/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    font-weight: bold;
    color: #222;
}

main {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Search Results */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.card-title:hover {
    text-decoration: underline;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.card .btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.card .btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Styling */
@media (max-width: 768px) {
    main {
        padding: 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .card .btn-primary {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    .card {
        padding: 10px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.8rem;
    }
}
