/* assets/css/index.css */
body {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Kanit', sans-serif;
}

.navbar-custom {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.hero-banner {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    border-radius: 20px;
    color: white;
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.25);
}

.action-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 12px 20px -5px rgba(59, 130, 246, 0.15);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-ready {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.disabled-card {
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    opacity: 0.75;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    position: relative;
    padding-left: 12px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: #2563eb;
    border-radius: 4px;
}