:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
}

/* featured cards */
.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.feature-card .card-body {
    text-align: center;
    padding: 1rem;
}
.feature-card .card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.feature-card .btn-sm {
    margin: 0 2px;
}

/* how it works steps */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* category table */
.category-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.category-table th {
    background: var(--primary);
    color: white;
    font-weight: 500;
    padding: 15px;
    text-align: center;
}
.category-table td {
    padding: 12px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}
.category-table tr:last-child td {
    border-bottom: none;
}
.template-actions .btn {
    margin: 2px;
}

/* responsive adjustments */
@media (max-width: 768px) {
    .category-table {
        font-size: 0.9rem;
    }
    .template-actions .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}