/* Feedback Page Styles */
.feedback-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
}

.feedback-container h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.feedback-form {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

.form-group .required {
    color: #d32f2f;
    margin-left: 0.25rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.help-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.feedback-form button[type="submit"] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}

.feedback-form button[type="submit"]:hover {
    background-color: #357abd;
    transform: translateY(-1px);
}

.feedback-form button[type="submit"]:active {
    transform: translateY(0);
}

.feedback-form button[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.feedback-links {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.feedback-links a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.feedback-links a:hover {
    color: #357abd;
    text-decoration: underline;
}

.feedback-links a:not(:last-child) {
    margin-right: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .feedback-container {
        padding: 1rem;
        margin: 1rem auto;
    }

    .feedback-form {
        padding: 1.5rem;
    }

    .feedback-container h1 {
        font-size: 1.75rem;
    }

    .feedback-links a:not(:last-child) {
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .feedback-container h1 {
        font-size: 1.5rem;
    }

    .feedback-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .feedback-links a:not(:last-child) {
        margin-right: 0;
    }
}
