/* Modern Dashboard Styles */
.m-t-60 {
    margin-top: 60px;
}

.page-header {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.breadcrumb-modern {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #6c5ce7;
    font-weight: 500;
    text-decoration: none;
}

.dashboard-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    margin-bottom: 30px;
    transition: transform 0.2s;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header-modern {
    background: #fff;
    border-bottom: 1px solid #f1f2f6;
    padding: 20px 25px;
    font-weight: 700;
    color: #2d3436;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-card {
    border-radius: 15px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card .icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 3rem;
    opacity: 0.2;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #00b894, #55efc4);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ff7675, #fab1a0);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.event-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.event-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f2f6;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item:hover {
    background: #f8f9fa;
}

.event-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 2px;
}

.event-date {
    font-size: 0.85rem;
    color: #636e72;
}

.quick-action-btn {
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #6c5ce7;
    color: #fff;
    text-decoration: none;
}

.quick-action-btn i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #6c5ce7;
}

.quick-action-btn:hover i {
    color: #fff;
}

/* Table overrides */
.table-modern thead th {
    border-top: none;
    border-bottom: 2px solid #e1e4e8;
    background: #f8f9fa;
    color: #2d3436;
    font-weight: 600;
}