.search-wrapper {
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 999;
}

.search-form {
    display: flex;
}

.search-form input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.search-form button {
    padding: 8px 12px;
    border: none;
    background: #ffc600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}


/* Search Results Container */
.container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Card Style */
.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card h6 a {
    color: #0056b3;
    text-decoration: none;
}

.card h6 a:hover {
    text-decoration: underline;
}

/* Snippet Text */
.card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Highlight */
mark {
    background-color: #ffc107;
    color: #000;
    padding: 0 3px;
    border-radius: 2px;
}
