/* style.css */

:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.prompt-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.category-pill {
    transition: all 0.2s ease;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
}

.category-pill:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95) !important;
}

pre {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item.active {
    font-weight: 400;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Admin Sidebar Tweak */
.sidebar a {
    border-radius: 8px;
    margin: 4px 10px;
}

@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
        padding-bottom: 20px;
    }
}
