.client-surveys-list { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
.client-surveys-list h3 { color: #2c3e50; margin-bottom: 15px; font-size: 28px; }
.surveys-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; margin-top: 30px; }
.survey-item { border: 1px solid #e0e0e0; border-radius: 12px; padding: 25px; background: #fff; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.survey-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); border-color: #3498db; }
.survey-item h4 { margin: 0 0 15px 0; color: #2c3e50; font-size: 20px; }
.survey-item h4 a { text-decoration: none; color: #2c3e50; transition: color 0.3s ease; }
.survey-item h4 a:hover { color: #3498db; }
.survey-date { color: #7f8c8d; font-size: 14px; margin: 0 0 12px 0; font-weight: 500; }
.survey-excerpt { color: #5a6c7d; line-height: 1.6; margin: 0 0 20px 0; font-size: 15px; }
.view-report-btn { display: inline-block; background: linear-gradient(135deg, #3498db, #2980b9); color: white; padding: 12px 24px; text-decoration: none; border-radius: 6px; font-size: 14px; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; }
.view-report-btn:hover { background: linear-gradient(135deg, #2980b9, #2471a3); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3); }
.no-surveys-message { text-align: center; padding: 50px 30px; background: #f8f9fa; border-radius: 12px; border: 2px dashed #dee2e6; margin: 30px 0; }
.no-surveys-message h3 { color: #6c757d; margin-bottom: 15px; }
.no-surveys-message p { color: #6c757d; font-size: 16px; line-height: 1.5; }
.admin-surveys-notice { background: linear-gradient(135deg, #e3f2fd, #bbdefb); border: 1px solid #90caf9; border-radius: 12px; padding: 30px; margin: 30px 0; text-align: center; }
.admin-surveys-notice h3 { color: #1565c0; margin-bottom: 15px; font-size: 24px; }
.admin-surveys-notice p { color: #1976d2; font-size: 16px; line-height: 1.6; margin-bottom: 10px; }
.admin-surveys-notice a { color: #0d47a1; text-decoration: none; font-weight: 600; border-bottom: 2px solid #0d47a1; transition: all 0.3s ease; }
.admin-surveys-notice a:hover { color: #64b5f6; border-bottom-color: #64b5f6; }
@media (max-width:768px) {
.surveys-grid { grid-template-columns: 1fr; }
.client-surveys-list { padding: 20px 15px; }
}
