.coursde-hr-frontend { max-width: 800px; }

.hr-profile-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.hr-profile-card h3 { margin-top: 0; font-size: 16px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.hr-profile-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.hr-profile-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.hr-profile-value { font-size: 14px; margin-top: 2px; }

/* Schedule */
.hr-schedule-grid { display: grid; gap: 8px; }
.hr-schedule-slot {
    display: flex; justify-content: space-between; align-items: center;
    background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 6px; padding: 10px 14px;
}
.hr-schedule-day { font-weight: 600; min-width: 80px; }
.hr-schedule-time { color: #555; }
.hr-schedule-service { color: #888; font-size: 13px; }
.hr-schedule-actions button { background: none; border: 1px solid #ccc; border-radius: 4px; padding: 4px 8px; cursor: pointer; font-size: 12px; }
.hr-schedule-actions button:hover { background: #f0f0f0; }
.hr-schedule-actions .delete:hover { background: #fee; color: #c00; border-color: #c00; }

/* Form */
.hr-public-form { background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; margin-top: 16px; }
.hr-public-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.hr-public-form input, .hr-public-form select { width: 100%; padding: 6px 10px; border: 1px solid #ddd; border-radius: 4px; margin-bottom: 10px; }
.hr-public-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hr-public-form button { background: #2271b1; color: #fff; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer; }
.hr-public-form button:hover { background: #135e96; }

/* Documents */
.hr-doc-list { list-style: none; padding: 0; }
.hr-doc-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid #eee; }
.hr-doc-item:last-child { border-bottom: 0; }
.hr-doc-type { display: inline-block; background: #e8f0fe; color: #1a56db; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 500; margin-right: 8px; }
.hr-doc-link { text-decoration: none; color: #2271b1; font-size: 13px; }
