/* Welcome Section */
.welcome-section {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    margin: 1rem auto;
    border-radius: 20px;
    max-width: 1200px;
}

.welcome-section h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-section p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

@media (max-width: 991px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stats-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(255, 105, 180, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0.5rem 0;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
    margin: 1.5rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.quick-actions h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.actions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .actions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .actions-container {
        grid-template-columns: 1fr;
    }
}

.action-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}

.action-card:hover {
    transform: translateY(-5px);
    color: #333;
}

.action-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(255, 105, 180, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.action-subtitle {
    font-size: 0.8rem;
    color: #666;
} 