/* ==========================================================================
   FIELD REQUESTS
   ========================================================================== */
.field-requests-layout {
    flex: 1;
    overflow-y: auto;
}

.field-requests-list {
    display: flex;
    flex-direction: column;
}

.field-request-card {
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.15s ease;
}

.field-request-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.field-request-card.pending {
    border-left: 3px solid #f59e0b;
}

.field-request-card.resolved {
    opacity: 0.8;
}

.field-request-card.resolved:hover {
    opacity: 1;
}

.field-request-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.field-request-type {
    display: flex;
    align-items: center;
    gap: 12px;
}

.request-type-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.request-type-icon.material {
    background: #fef3c7;
    color: #d97706;
}

.request-type-icon.schedule {
    background: #dbeafe;
    color: #2563eb;
}

.request-type-icon.equipment {
    background: #ede9fe;
    color: #7c3aed;
}

.request-type-icon.crew {
    background: #fce7f3;
    color: #db2777;
}

.request-type-icon.time-off {
    background: #eff6ff;
    color: #3b82f6;
}

.request-type-icon.expense {
    background: #ecfdf5;
    color: #059669;
}

.request-type-icon.support {
    background: #fef2f2;
    color: #ef4444;
}

.request-type-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.request-ref {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.request-ref i {
    font-size: 11px;
    color: #94a3b8;
}

.request-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.request-status-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

.request-status-badge.approved {
    background: #d1fae5;
    color: #059669;
}

.request-status-badge.denied {
    background: #fee2e2;
    color: #dc2626;
}

.field-request-body {
    padding: 16px 20px;
}

.request-description {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 14px;
}

.request-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.request-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.request-detail i {
    color: #94a3b8;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.denial-note {
    font-style: italic;
    color: #475569;
}

.field-request-actions {
    display: flex;
    gap: 8px;
    padding: 12px 20px 16px;
}

.btn-approve {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    background: #059669;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-approve:hover {
    background: #047857;
}

.btn-deny {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    background: #ffffff;
    color: #dc2626;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-deny:hover {
    background: #fef2f2;
}

.btn-view-task {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    color: #475569;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-view-task:hover {
    border-color: #cbd5e1;
    color: #059669;
}

.btn-delete-request {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #ffffff;
    color: #475569;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-left: auto;
}

.btn-delete-request:hover {
    border-color: #fca5a5;
    color: #dc2626;
    background: #fef2f2;
}

/* ==========================================================================
   NOTIFICATION TOOLBAR / FILTER CHIPS
   ========================================================================== */
.notification-toolbar {
    margin-bottom: 20px;
}

.notification-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.notification-filters .filter-chip {
    padding: 6px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s ease;
}

.notification-filters .filter-chip:hover {
    border-color: #059669;
    color: #059669;
}

.notification-filters .filter-chip.active {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */
.field-requests-layout::-webkit-scrollbar {
    width: 6px;
}

.field-requests-layout::-webkit-scrollbar-track {
    background: transparent;
}

.field-requests-layout::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.field-requests-layout::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
