/* Dashboard specific styles */
.dashboard-container {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 60px);
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stat-card .card-body {
    padding: 1.5rem;
}

.stat-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: inherit;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: inherit;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-card.primary-card {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
}

.stat-card.success-card {
    background: linear-gradient(135deg, #1cc88a 0%, #13855c 100%);
    color: white;
}

.stat-card.warning-card {
    background: linear-gradient(135deg, #f6c23e 0%, #dda20a 100%);
    color: white;
}

/* Advertisements Section */
.ads-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    margin-top: 2rem;
}

.ads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ads-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.create-ad-btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 8px;
}

/* Table Styles */
.ads-table {
    border: none;
    margin-bottom: 0;
}

.ads-table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e3e6f0;
    color: #5a5c69;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.ads-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #5a5c69;
    border-bottom: 1px solid #e3e6f0;
}

.ads-table .action-links {  
    gap: 0.5rem;
}

.ads-table .action-links .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.status-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.status-badge.approved {
    background-color: #e6f4ea;
    color: #1e7e34;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .ads-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
} 