.page-content {
    background: white;
}

.table-search-schedule {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 25px 12px;
}

.table-search-schedule table {
    border: 1px solid #ccc;
}

.table-search-schedule table thead {
    background: #0d6efd;
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.date-badge {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-paid {
    background: #e8f5e9;
    color: var(--safe-green);
}

.status-pending {
    background: #fffde7;
    color: #f39c12;
}

.status-cancelled {
    background: #ffebee;
    color: var(--danger-red);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-row i {
    width: 20px;
    color: var(--primary-blue);
    text-align: center;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 5px;
}

.card-footer-action {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    display: flex;
    justify-content: flex-end;
}

.btn-detail {
    border: none;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}