.navbar {
    background: rgba(60, 30, 30, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.logo {
    height: 70px;
    filter: brightness(0) invert(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    margin-right: 90px;
}

.navbar-actions form {
    margin: 0;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 15px;
        position: fixed;
    }

    .logo {
        height: 50px;
    }

    .navbar-actions {
        position: absolute;
        right: 35px;
        margin-right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-links {
        display: none;
    }

    .logout-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .evaluation-page-container {
        padding-top: 60px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .form-header-box {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
    }

    .form-logo {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 6px;
    }

    .form-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .form-title-text h2 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .form-purpose-text {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .evaluation-main-content {
        flex: 1;
        height: calc(100vh - 60px - 6px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .evaluation-form-box {
        width: 100%;
        height: 65vh;
        overflow-y: auto;
        background-color: rgba(255, 204, 0, 0.08);
        border: 1px solid rgba(255, 204, 0, 0.25);
        border-radius: 10px;
        padding: 10px 12px 38px 12px;
        position: relative;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .form-control,
    .open-ended {
        font-size: 0.75rem;
        padding: 6px 8px;
        height: auto;
        min-height: 30px;
        background: rgba(255, 204, 0, 0.08);
    }

    .form-control option {
        background: #ffefcc;
    }

    .open-ended {
        min-height: 50px;
    }

    .input-row {
        flex-direction: column;
        gap: 8px;
    }

    .button-group {
        position: absolute;
        bottom: 6px;
        left: 10px;
        right: 10px;
        justify-content: center;
        margin-top: 0;
        padding-top: 0;
    }

    button.btn-success {
        width: 145px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .evaluated-list-box {
        width: 100%;
        height: calc(100vh - 60px - 6px - 65vh - 12px);
        overflow-y: auto;
        background-color: rgba(255, 204, 0, 0.08);
        border: 1px solid rgba(255, 204, 0, 0.25);
        padding: 10px 12px 10px 12px;
        border-radius: 12px;
        font-size: 0.7rem;
        margin-top: 6px;
        box-sizing: border-box;
    }

    .evaluated-list-box ul {
        margin: 0;
        padding-left: 14px;
        max-height: 120px;
    }

    .evaluated-list-box li {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .logo {
        height: 45px;
    }

    .logout-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
        margin-right: 0;
    }

    .evaluation-page-container {
        padding: 55px 10px 10px 10px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .evaluation-main-content {
        height: calc(100vh - 55px - 6px);
    }

    .evaluated-list-box {
        height: auto;
        max-height: 150px;
    }
}