:root {
    --corporate-blue: #002f4b;
    --corporate-teal: #005f73;
    --corporate-red: #dc3545;
    --corporate-gray: #f8f9fa;
    --border-color: #e9ecef;
}

/* Page Header styles removed - using global partial */

/* Warning Cards */
.warning-card {
    background: #fff;
    border: 1px solid #ffebeb;
    border-left: 5px solid var(--corporate-red);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.warning-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.08);
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff5f5;
    color: var(--corporate-red);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid #ffe0e3;
}

.warning-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.warning-text {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.time-block {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corporate-blue);
    font-size: 1.1rem;
}

.time-info small {
    display: block;
    color: #6c757d;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.time-info span {
    font-weight: 600;
    color: #212529;
    font-size: 0.95rem;
}

.btn-detail-warning {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--corporate-red);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.btn-detail-warning:hover {
    color: #a71d2a;
    gap: 0.75rem;
    border-bottom-color: #a71d2a;
}

/* Pagination */
.pagination .page-link {
    color: var(--corporate-red);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    min-width: 38px;
    text-align: center;
    border-radius: 4px;
}

.pagination .page-item.active .page-link {
    background-color: var(--corporate-red);
    border-color: var(--corporate-red);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 5rem 1rem;
}

.empty-icon-circle {
    width: 100px;
    height: 100px;
    background: #e6f8eb;
    color: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}
