/* ============================================
   OurCare Dashboard - Feedback (Desktop)
   Extracted from templates/dashboard/feedback_desktop.html
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: #000000;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    width: 100%;
    height: 72px;
    background: #FFFFFF;
    border-bottom: 1px solid #B5B4C8;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 102%;
    letter-spacing: -0.04em;
    color: #4D5DD9;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.nav-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 4px;
    height: 36px;
    border: 1px solid #4D5DD9;
    border-radius: 39px;
    background: transparent;
    color: #4D5DD9;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.nav-button:hover {
    background: #4D5DD9;
    color: #FFFFFF;
}

/* Main Content */
.main-content {
    margin-top: 72px;
    padding: 48px 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Feedback Container */
.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Feedback Header */
.feedback-header {
    background: #6DF2B9;
    color: #000000;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.feedback-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 12px;
}

.feedback-header h2 i {
    margin-right: 12px;
}

.feedback-header p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 16px;
}

.feedback-header a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #4D5DD9;
    text-decoration: none;
}

.feedback-header a:hover {
    text-decoration: underline;
}

/* Feedback Form */
.feedback-form {
    background: #FFFFFF;
    padding: 40px;
    border: 1px solid #B5B4C8;
    border-radius: 12px;
}

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

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
    display: block;
    margin-bottom: 12px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #B5B4C8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 102%;
    color: #000000;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: #FFFFFF;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4D5DD9;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #B5B4C8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 102%;
    color: #000000;
    background: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #4D5DD9;
}

.btn-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 4px;
    height: 36px;
    border: 1px solid #4D5DD9;
    border-radius: 39px;
    background: #4D5DD9;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 auto;
}

.btn-submit:hover {
    background: #3d4bc7;
    border-color: #3d4bc7;
}

.btn-submit:active {
    transform: translateY(1px);
}

.submit-container {
    text-align: center;
    margin-top: 32px;
}

/* Thank You Message */
.thank-you-message {
    background: #6DF2B9;
    color: #000000;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.thank-you-message h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 115%;
    color: #000000;
    margin-bottom: 16px;
}

.thank-you-message p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
    margin-bottom: 24px;
}

.thank-you-message .btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 4px;
    height: 36px;
    border: 1px solid #4D5DD9;
    border-radius: 39px;
    background: #4D5DD9;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.thank-you-message .btn:hover {
    background: #3d4bc7;
    border-color: #3d4bc7;
}

.required-indicator {
    color: #FF4F8B;
}

/* Footer */
.data-footer {
    width: 100%;
    background: #000000;
    padding: 39px 48px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 102%;
    color: #5669F3;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-divider {
    width: 100%;
    height: 0px;
    border: 1px solid #FFFFFF;
}

.footer-copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.06em;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 32px 20px;
    }

    .feedback-form {
        padding: 24px;
    }

    .feedback-header {
        padding: 32px 24px;
    }

    .feedback-header h2 {
        font-size: 28px;
    }

    .nav-bar {
        padding: 16px 20px;
    }

    .data-footer {
        padding: 32px 24px;
    }
}


