body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.navbar {
    background-color: #30d5c8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.navbar img {
    height: 50px !important; 
    width: auto !important; 
    max-height: none;
    max-width: none;
}



.navbar .actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar .actions i {
    font-size: 24px;
    cursor: pointer;
}


#menu-toggle {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    margin: 0;
    padding: 0;
}

#menu-toggle,
.navbar .actions i {
    -webkit-tap-highlight-color: transparent;
}

#menu-toggle:focus,
.navbar .actions i:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="number"]:focus {
    border-color: #30d5c8;
    outline: none;
    box-shadow: 0 0 5px rgba(48, 213, 200, 0.5);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 5vw;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .navbar {
        padding: 15px;
        font-size: 20px;
    }

    .navbar img {
        height: 40px;
    }

    .container h2 {
        font-size: 24px;
    }

    input[type="submit"] {
        padding: 12px;
        font-size: 16px;
    }
}

.container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

label {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
textarea:focus {
    border: 1px solid #30d5c8;
    outline: none;
}

.password-container {
    position: relative;
}

.password-container input[type="password"] {
    padding-right: 40px;
}

.password-container .toggle-password {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

input[type="submit"] {
    width: 100%;
    background-color: #30d5c8;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #28b2aa;
}

.login-prompt {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #555;
}

.login-prompt a {
    color: #30d5c8;
    text-decoration: none;
}

.login-prompt a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    color: #777;
    font-size: 14px;
    margin-top: 30px;
}

.date-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.date-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.small-text {
    font-size: 15px;
}

.verification-code {
    display: flex;
    justify-content: space-between;
}

.waiting-image {
    width: 100px;
    height: 100px;
    border-radius: 0;
    cursor: pointer;
    object-fit: cover;
    border: none;
    transition: transform 0.3s;
}

.waiting-image:hover {
    transform: scale(1.1);
}

.disabled-image {
    pointer-events: none;
    cursor: default;
}

.verification-code input {
    width: 15%;
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.verification-code input.correct {
    border-color: green;
}

.verification-code input.wrong {
    border-color: red;
}

button {
    background-color: #0044cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #002a80;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

footer p {
    margin: 0;
}

.custom-alert {
    border-radius: 10px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success i,
.alert-danger i {
    margin-right: 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    font-family: 'Roboto', sans-serif;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
}

.logo-section h2 {
    margin-left: 8px;
    font-size: 14px;
    color: #333;
}

.close-btn {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.close-btn:hover {
    background: #30d5c8;
    transform: scale(1.1);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #30d5c8;
    stroke-width: 2;
    transition: stroke 0.3s;
}

.close-btn:hover svg {
    stroke: #fff;
}

.sidebar-menu {
    padding: 10px 0;
}

.sidebar-menu .menu-item {
    display: block;
    padding: 12px 20px;
    margin: 10px 15px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.sidebar-menu .menu-item:hover {
    background: #30d5c8;
    color: #fff;
}
.disabled-link {
    pointer-events: none;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .sidebar {
        width: 260px;
        right: -260px;
    }

    .sidebar.open {
        right: 0;
    }
}