/* Simple Dashboard Styles - Clean 3-card design */

.simple-dashboard-container {
    background-color: #f8f8f8;
    min-height: auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
    text-decoration: none;
    color: inherit;
}

.card-icon {
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.card-description {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.4;
    max-width: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-dashboard-container {
        padding: 20px 15px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-card {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .card-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 25px 15px;
        min-height: 160px;
    }
    
    .card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 12px;
    }
}
