/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
}

a{
  text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    background: #3b82f6;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.logo-text p {
    color: #64748b;
    font-size: 14px;
}

/* Main Content */
.main {
    padding: 48px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 64px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Action Buttons */
.actions {
    margin-bottom: 80px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    position: relative;
}

.action-button {
    width: 100%;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.action-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.action-button h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.action-button p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Individual Button Styles */
.add .action-button:hover {
    border-color: #22c55e;
    background: #f0fdf4;
}

.add .icon {
    background: #dcfce7;
    color: #16a34a;
}

.add .action-button:hover .icon {
    background: #22c55e;
    color: white;
}

.add .action-button:hover h3 {
    color: #16a34a;
}

.view .action-button:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.view .icon {
    background: #dbeafe;
    color: #2563eb;
}

.view .action-button:hover .icon {
    background: #3b82f6;
    color: white;
}

.view .action-button:hover h3 {
    color: #2563eb;
}

.modify .action-button:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.modify .icon {
    background: #fef3c7;
    color: #d97706;
}

.modify .action-button:hover .icon {
    background: #f59e0b;
    color: white;
}

.modify .action-button:hover h3 {
    color: #d97706;
}

.delete .action-button:hover {
    border-color: #ef4444;
    background: #fef2f2;
}

.delete .icon {
    background: #fecaca;
    color: #dc2626;
}

.delete .action-button:hover .icon {
    background: #ef4444;
    color: white;
}

.delete .action-button:hover h3 {
    color: #dc2626;
}

/* Stats Section */
.stats {
    margin-bottom: 40px;
}

.stats-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 32px 0;
    margin-top: 40px;
}

.footer p {
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .action-button {
        padding: 24px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .action-button {
        padding: 20px;
    }
    
    .icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}