body {
    font-family: 'Prompt', Arial, sans-serif;
    background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
    min-height: 100vh;
}

/* header {
    background: linear-gradient(45deg, #343a40, #6c757d);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
} */

header h1 {
    margin: 0;
}

header .form-inline {
    display: flex;
    justify-content: flex-end;
}

header .form-inline .form-control {
    margin-right: 10px;
}

h2 {
    color: #ff9800;
    font-weight: bold;
    margin-bottom: 2rem;
}
.navbar {
    margin-bottom: 20px;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.card img {
    max-height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.card .btn {
    background-color: #007bff;
    color: white;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.product-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(255,152,0,0.15);
}
.card-header {
    background: #ff9800;
    color: #111111;
    font-weight: bold;
    border-radius: 18px 18px 0 0;
    font-size: 1.1rem;
}
.btn-primary {
    background: linear-gradient(90deg, #a9e7b3 0%, #74dd6b 100%);
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255,152,0,0.12);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #ffb74d 0%, #ff9800 100%);
    box-shadow: 0 4px 16px rgba(255,152,0,0.18);
}
.img-fluid, .card-img-top {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
footer {
    background: #343a40;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
a.text-white:hover {
    color: #ff9800 !important;
    text-decoration: underline;
}
@media (max-width: 767px) {
    .product-card {
        margin-bottom: 1.5rem;
    }
    h2 {
        font-size: 1.3rem;
    }
}
