/**
 * Coachment Feedback CSS
 */

.coachment-feedback-footer {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.coachment-feedback-links {
    font-size: 12px;
}

.coachment-feedback-link {
    color: #0073aa;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.coachment-feedback-link:hover {
    color: #005177;
    text-decoration: underline;
}

.coachment-feedback-link:last-child {
    margin-right: 0;
}

/* Modal styles */
#coachment-feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
}

#coachment-feedback-modal > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#coachment-feedback-modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #23282d;
}

#coachment-feedback-modal label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #23282d;
}

#coachment-feedback-modal select,
#coachment-feedback-modal textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

#coachment-feedback-modal textarea {
    min-height: 150px;
    resize: vertical;
}

#coachment-feedback-modal .button {
    margin-top: 10px;
}

#coachment-feedback-modal .button-secondary {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    #coachment-feedback-modal > div {
        width: 95%;
        padding: 20px;
    }
}

