/**
 * Pinnacle Interview Scheduler - Complete Styles
 * Updated for WP Job Portal Dashboard Integration
 * Version: 2.2.0
 */

/* ========================================
   GENERAL STYLES
   ======================================== */
.pinnacle-interview-wrap {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.pinnacle-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.pinnacle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.pinnacle-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* ========================================
   DASHBOARD STYLES (NEW)
   ======================================== */
.pinnacle-wpjp-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.dashboard-header {
    background-image: linear-gradient(180deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
	color: #fff;
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.user-role-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.current-time {
    text-align: right;
    font-size: 14px;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card.gradient-blue::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.gradient-green::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.stat-card.gradient-purple::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card.gradient-orange::before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #7F8C8D;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-sublabel {
    font-size: 13px;
    color: #95A5A6;
}

.stat-link {
    display: inline-block;
    margin-top: 15px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.stat-link:hover {
    color: #5568d3;
}

/* Content Grid */
.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dashboard-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Widgets */
.dashboard-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dashboard-widget.urgent {
    border: 2px solid #ff9800;
}

.widget-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.widget-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2C3E50;
}

.widget-badge {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.widget-badge.urgent {
    background: #ff9800;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.widget-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.widget-content {
    padding: 20px 25px;
}

/* Mini Cards */
.mini-interview-card,
.mini-application-card,
.pending-confirmation-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.mini-interview-card:hover,
.mini-application-card:hover,
.pending-confirmation-card:hover {
    background: #f8f9fa;
    border-color: #667eea;
}

.mini-interview-card.today {
    background: #fff3e0;
    border-color: #ff9800;
}

.mini-card-time {
    font-weight: 700;
    color: #667eea;
    font-size: 14px;
    min-width: 80px;
}

.mini-card-avatar img {
    border-radius: 50%;
}

.mini-card-content {
    flex: 1;
}

.mini-card-content strong {
    display: block;
    color: #2C3E50;
    margin-bottom: 3px;
}

.mini-card-content p,
.mini-card-content small {
    margin: 0;
    color: #7F8C8D;
    font-size: 13px;
}

.mini-card-actions,
.mini-card-action {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mini-card-status {
    display: flex;
    align-items: center;
}

.btn-mini {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-join {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-mini-schedule {
    background: #4CAF50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
}

.btn-confirm-mini {
    background: #4CAF50;
    color: white;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.status-pending {
    background: #ff9800;
}

.status-dot.status-confirmed {
    background: #4CAF50;
}

.status-dot.status-completed {
    background: #2196F3;
}

/* Pending Confirmation Cards */
.pending-confirmation-card {
    background: #fff3e0;
    border-color: #ff9800;
}

.pc-icon {
    font-size: 32px;
}

.pc-content {
    flex: 1;
}

.pc-actions {
    display: flex;
    gap: 8px;
}

/* Upcoming Interview Items */
.upcoming-interview-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-left: 3px solid #667eea;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.upcoming-date {
    text-align: center;
    min-width: 50px;
}

.date-day {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    color: #7F8C8D;
    text-transform: uppercase;
}

.upcoming-content {
    flex: 1;
}

.upcoming-content strong {
    display: block;
    color: #2C3E50;
    margin-bottom: 3px;
}

.upcoming-content p {
    margin: 0 0 5px 0;
    color: #7F8C8D;
    font-size: 13px;
}

.upcoming-actions {
    display: flex;
    align-items: center;
}

.time-badge {
    background: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Status Badges */
.status-badge,
.status-badge-small {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge-small {
    font-size: 10px;
    padding: 3px 8px;
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.status-confirmed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-completed {
    background: #e3f2fd;
    color: #1565c0;
}

.status-approved {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #2C3E50;
    transition: all 0.2s;
    font-weight: 600;
}

.quick-action-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.qa-icon {
    font-size: 28px;
}

.qa-text {
    font-size: 13px;
}

/* Integration Status */
.integration-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.integration-icon {
    font-size: 24px;
}

.integration-name {
    flex: 1;
    font-weight: 500;
}

.integration-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.integration-badge.enabled {
    background: #e8f5e9;
    color: #2e7d32;
}

.integration-badge.disabled {
    background: #f5f5f5;
    color: #999;
}

.btn-settings {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.btn-settings:hover {
    background: #5568d3;
    color: white;
}

/* Tips & Stats Lists */
.tips-list,
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tip-icon {
    color: #4CAF50;
    font-weight: 700;
}

.tip-text {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-label {
    color: #7F8C8D;
    font-size: 14px;
}

.stats-value {
    color: #2C3E50;
    font-weight: 700;
    font-size: 16px;
}

/* Empty States */
.empty-state-small {
    text-align: center;
    padding: 30px 15px;
    color: #95A5A6;
}

.empty-state-small p {
    margin: 0;
}

/* Login Required */
.login-required {
    max-width: 500px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-required h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.btn-login {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-login:hover {
    background: #5568d3;
}

/* ========================================
   OLD DASHBOARD STYLES (PRESERVED)
   ======================================== */
.pinnacle-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pinnacle-stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pinnacle-stat-box:hover {
    transform: translateY(-5px);
}

.pinnacle-stat-box.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.pinnacle-stat-box.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pinnacle-stat-box.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.pinnacle-stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pinnacle-stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pinnacle-stat-change {
    font-size: 12px;
    opacity: 0.8;
}

/* ========================================
   CALENDAR PICKER
   ======================================== */
.pinnacle-calendar-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
}

.pinnacle-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pinnacle-calendar-nav {
    background: #f5f5f5;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s;
}

.pinnacle-calendar-nav:hover {
    background: #e0e0e0;
}

.pinnacle-calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pinnacle-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.pinnacle-calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
}

.pinnacle-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.pinnacle-calendar-day:hover {
    background: #f0f0f0;
}

.pinnacle-calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pinnacle-calendar-day.disabled:hover {
    background: transparent;
}

.pinnacle-calendar-day.selected {
    background: #667eea;
    color: white;
    font-weight: 600;
}

.pinnacle-calendar-day.today {
    border-color: #667eea;
}

/* ========================================
   TIME SLOTS
   ======================================== */
.pinnacle-timeslots-container {
    margin-top: 20px;
}

.pinnacle-timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.pinnacle-timeslot {
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s;
}

.pinnacle-timeslot:hover {
    background: #e8e9eb;
    border-color: #667eea;
}

.pinnacle-timeslot.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pinnacle-timeslot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pinnacle-timeslot.disabled:hover {
    background: #f8f9fa;
    border-color: #e0e0e0;
}

/* ========================================
   INTERVIEW CARDS
   ======================================== */
.pinnacle-interview-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.pinnacle-interview-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pinnacle-interview-card.upcoming {
    border-left: 4px solid #4facfe;
}

.pinnacle-interview-card.completed {
    border-left: 4px solid #38ef7d;
}

.pinnacle-interview-card.cancelled {
    border-left: 4px solid #f5576c;
    opacity: 0.7;
}

.pinnacle-interview-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.pinnacle-interview-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.pinnacle-interview-subtitle {
    font-size: 14px;
    color: #666;
}

.pinnacle-interview-body {
    margin-bottom: 16px;
}

.pinnacle-interview-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.pinnacle-interview-info-row .dashicons {
    margin-right: 8px;
    color: #667eea;
}

.pinnacle-interview-footer {
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* ========================================
   STATUS BADGES (OLD)
   ======================================== */
.pinnacle-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pinnacle-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.pinnacle-status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.pinnacle-status-badge.completed {
    background: #cce5ff;
    color: #004085;
}

.pinnacle-status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.pinnacle-status-badge.rescheduled {
    background: #e2e3e5;
    color: #383d41;
}

/* ========================================
   BUTTONS
   ======================================== */
.pinnacle-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pinnacle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pinnacle-btn-primary {
    background: #667eea;
    color: white;
}

.pinnacle-btn-primary:hover {
    background: #5568d3;
}

.pinnacle-btn-success {
    background: #38ef7d;
    color: white;
}

.pinnacle-btn-success:hover {
    background: #2dd36f;
}

.pinnacle-btn-danger {
    background: #f5576c;
    color: white;
}

.pinnacle-btn-danger:hover {
    background: #e04253;
}

.pinnacle-btn-secondary {
    background: #6c757d;
    color: white;
}

.pinnacle-btn-secondary:hover {
    background: #5a6268;
}

.pinnacle-btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.pinnacle-btn-outline:hover {
    background: #667eea;
    color: white;
}

.pinnacle-btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.pinnacle-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.pinnacle-form-group {
    margin-bottom: 20px;
}

.pinnacle-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.pinnacle-form-label.required::after {
    content: " *";
    color: #f5576c;
}

.pinnacle-form-control {
    width: 100%;
    padding: 5px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.pinnacle-form-control:focus {
    outline: none;
    border-color: #667eea;
}

.pinnacle-form-control.error {
    border-color: #f5576c;
}

.pinnacle-form-help {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.pinnacle-form-error {
    font-size: 12px;
    color: #f5576c;
    margin-top: 4px;
}

.pinnacle-radio-group {
    display: flex;
    gap: 16px;
}

.pinnacle-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.pinnacle-radio-option input[type="radio"] {
    margin-right: 8px;
}

/* ========================================
   MODAL
   ======================================== */
.pinnacle-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	max-width: 100%;
    width: 100% !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pinnacle-modal {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pinnacle-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pinnacle-modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.pinnacle-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.pinnacle-modal-close:hover {
    background: #f0f0f0;
}

.pinnacle-modal-body {
    padding: 24px;
}

.pinnacle-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ========================================
   TABLES
   ======================================== */
.pinnacle-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pinnacle-table thead {
    background: #f8f9fa;
}

.pinnacle-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.pinnacle-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pinnacle-table tbody tr:hover {
    background: #f8f9fa;
}

/* ========================================
   FILTERS
   ======================================== */
.pinnacle-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pinnacle-filter-item {
    flex: 1;
    min-width: 200px;
}

/* ========================================
   LOADING SPINNER
   ======================================== */
.pinnacle-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pinnacle-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   ALERTS
   ======================================== */
.pinnacle-alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pinnacle-alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.pinnacle-alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.pinnacle-alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.pinnacle-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pinnacle-stats-grid {
        grid-template-columns: 1fr;
    }

    .pinnacle-wpjp-dashboard {
        padding: 10px;
    }

    .dashboard-header {
        padding: 20px;
    }

    .dashboard-header h1 {
        font-size: 24px;
    }

    .stat-value {
        font-size: 28px;
    }

    .pinnacle-interview-header {
        flex-direction: column;
    }

    .pinnacle-interview-footer {
        flex-direction: column;
    }

    .pinnacle-filters {
        flex-direction: column;
    }

    .pinnacle-modal {
        width: 95%;
        margin: 20px;
    }

    .pinnacle-timeslots-grid {
        grid-template-columns: 1fr;
    }

    .mini-interview-card,
    .mini-application-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mini-card-time {
        min-width: auto;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.pinnacle-mt-10 {
    margin-top: 10px;
}

.pinnacle-mt-20 {
    margin-top: 20px;
}

.pinnacle-mb-10 {
    margin-bottom: 10px;
}

.pinnacle-mb-20 {
    margin-bottom: 20px;
}

.pinnacle-text-center {
    text-align: center;
}

.pinnacle-text-right {
    text-align: right;
}

.pinnacle-flex {
    display: flex;
}

.pinnacle-flex-between {
    justify-content: space-between;
}

.pinnacle-flex-center {
    justify-content: center;
    align-items: center;
}

.pinnacle-gap-10 {
    gap: 10px;
}

.pinnacle-gap-20 {
    gap: 20px;
}