/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set general page styles */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #121212; /* Dark background */
    color: #B0B0B0; /* Light gray text */
    padding: 10px;
    text-align: left;
    margin-top: 0;
    font-size: 1rem;
}
/* Loading screen styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Match the background of the site */
    color: #B0B0B0; /* Text color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it stays on top */
}

.loading-text {
    font-size: 2rem;
    font-weight: bold;
    animation: blink 1s infinite; /* Blinking effect */
}

/* Blinking effect */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/* Logo styling */
header {
    text-align: left;
    padding-bottom: 10px;
}

h1 {
    text-align: center;
    font-size: 1.5rem;
    color: #A8A8A8; /* Slightly brighter gray for title */
}

h2 {
    text-align: left;
    font-size: 1.2rem;
    color: #A8A8A8; /* Slightly brighter gray for title */
    margin-bottom: 20px;
}

/* Styling for the password input area */
#password-container {
    text-align: left;
    margin-top: 20px;
}

label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    color: #A8A8A8; /* Light gray for label */
}

.password-input {
    background-color: #2A2A2A; /* Dark gray background for input */
    color: #B0B0B0; /* Light gray text */
    padding: 10px;
    border: 2px solid #4C4C4C; /* Darker gray border */
    border-radius: 5px;
    font-size: 0.8rem;
    width: 200px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
}

/* Submit button - muted color */
.submit-btn {
    background-color: #6A7F55; /* Muted olive green for the submit button */
    color: #B0B0B0;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}

/* Hover effect for submit button */
.submit-btn:hover {
    background-color: #4C5A38; /* Darker olive green for hover effect */
}

/* Error message styling */
.error-msg {
    color: #D9534F; /* Soft red for error message */
    font-size: 0.8rem;
    margin-top: 10px;
    font-family: 'Orbitron', sans-serif;
}

/* File list styling */
#file-list {
    margin-top: 5px;
}

ul.file-list {
    list-style-type: none;
}

ul.file-list li {
    margin: 10px 0;
}

ul.file-list a {
    color: #B0B0B0; /* Light gray color for links */
    text-decoration: none; /* No underline for links */
}

ul.file-list a:hover {
    color: #E0E0E0; /* Slightly brighter color for hover effect */
    /* No underline for hover */
}

/* Ensure layout starts from the top of the page */
body {
    margin-top: 0;
}

input, button {
    text-align: left;
}

/* Additional styling for the page layout */
#password-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

input, button {
    margin-top: 10px;
}

footer {
    margin-top: 30px;
    text-align: left;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #A8A8A8; /* Light gray for footer text */
}

/* Styling for links in footer */
footer a {
    color: #B0B0B0; /* Light gray color for links */
    text-decoration: none; /* No underline for links */
}

footer a:hover {
    color: #E0E0E0; /* Slightly brighter color for hover effect */
}

#disabled-path {
    cursor: not-allowed;  /* Změní kurzor na zakázaný (neaktivní) při najetí myší */
    color: #6c757d;        /* (Nepovinné) Změní barvu textu na šedou pro vizuální efekt */
    text-decoration: none; /* (Nepovinné) Odstraní podtržení, pokud nějaké bylo */
}