.student-feedback-items-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
    scroll-behavior: smooth;
}

.student-feedback-item {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.student-feedback-content {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.student-feedback-meta {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #6c757d;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.student-feedback-user {
    font-weight: bold;
    margin-right: 10px;
    color: #2a3353;
}

.notice {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

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

.feedback-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.feedback-content {
    margin-bottom: 10px;
}

.feedback-meta {
    font-size: 0.9em;
    color: #6c757d;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.feedback-user {
    font-weight: bold;
    margin-right: 10px;
}

.pcc-student-feedback-responses {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-height: 500px;
}

@media screen and (max-width: 768px) {
    .pcc-student-feedback-responses {
        flex-direction: column;
        min-height: 80vh;
    }

    .student-feedback-form {
        width: 100% !important;
    }

    .student-feedback-items-container {
        width: 100%;
        min-height: 250px;
    }
}

.pcc-student-feedback-responses button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.student-feedback-form {
    width: 50%;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.student-feedback-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.student-feedback-form button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.student-feedback-form button:hover {
    background: #005177;
}

.student-feedback-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

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

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