/* --- Anonymous Feedback Clean Style --- */

.af_form {
    max-width: 500px;
    padding: 20px;
    margin: 20px auto;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.af_form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.af_form input[type="password"],
.af_form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.af_form input[type="password"]:focus,
.af_form textarea:focus {
    border-color: #0073aa;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
}

.af_form input[type="password"] {
    max-width: 470px;
}

.af_form textarea {
    height: 140px;
    max-width: 470px;
    resize: vertical;
}

.af_form button {
    padding: 12px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.af_form button:hover {
    background: #005f8a;
}

/* Success & error messages */
.af_form_success {
    background: #e7f7ec;
    padding: 12px;
    border-left: 4px solid #3c9d5b;
    margin-bottom: 15px;
    border-radius: 6px;
    color: #2f7a47;
}

.af_form_error {
    background: #fdecea;
    padding: 12px;
    border-left: 4px solid #d93025;
    margin-bottom: 15px;
    border-radius: 6px;
    color: #b2281a;
}

.af_list {
    max-width: 650px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.af_item {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.af_date {
    font-size: 10px;
    color: #777;
    margin-bottom: 6px;
}

.af_text {
    font-size: 15px;
    white-space: pre-wrap;
}
