body {
    font-family: "Inter", sans-serif;
    color: #202124;
    background: #fafafa;
}

h1, h2, h3, h4, h5 {
    font-family: "Merriweather", serif;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.9em;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #D32F2F; /* Or a softer accent like #B71C1C */
}
.btn-danger {
    background: #D32F2F;
    border: none;
}
.btn-danger:hover {
    background: #B71C1C;
}
.search-bar .input-group {
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.search-bar input.form-control {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
}

.search-bar input.form-control:focus {
    box-shadow: none;
}

.search-bar .btn-danger {
    background-color: #d32f2f;
    border: none;
}

.search-bar .btn-danger:hover {
    background-color: #b71c1c;
}

.search-bar .btn-light {
    border: none;
    background: #f1f1f1;
}

.search-bar .btn-light:hover {
    background: #e0e0e0;
}
.search-results-banner {
    border-radius: 14px;
    padding: 1rem 1.25rem;
}
.search-results-banner strong {
    font-weight: 700;
}
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay-content {
    text-align: center;
    padding: 24px 28px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
