/* General styles */
body {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1 {
    /* font-family: 'Rock Salt', cursive; */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

/* Main header */
h1 {
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0;
}

/* Search bar */
.form-label {
    font-weight: 600;
}

#filter-input {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: box-shadow 0.2s;
}

#filter-input:focus {
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Card styles */
.card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

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

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

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

/* Modal styles */
.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.modal-title {
    font-size: 1.5rem;
}

.modal-body img {
    width: 100%;
    height: auto;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
}

.btn-close {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.2s;
}

.btn-close:hover {
    color: #666;
    text-decoration: none;
}
/*  */
/* ? */
/*  */
/*  */
/*  */
/*  */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    color: #333333;
    font-weight: bold;
    margin-bottom: 40px;
}

.alert {
    /* background-color: #333333; */
    /* color: white; */
    border-radius: 10px;
    /* padding: 20px; */
    /* font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px; */
    border: #62a8ea;
    border-width: 50px;
}

/* .alert a {
    color: #62a8ea;
    text-decoration: underline;
} */

.modal-content {
    background-color: #f8f9fa;
    color: #333333;
}

.modal-title {
    font-weight: bold;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.card-img-top {
    width: 100%;
    height: auto;
}

.card-title {
    color: #333333;
    font-weight: bold;
}

.card-text {
    color: #666666;
}

.badge {
    background-color: #62a8ea;
    color: white;
}

.btn-outline-secondary {
    color: #62a8ea;
    border-color: #62a8ea;
}

.btn-outline-secondary:hover {
    background-color: #62a8ea;
    color: white;
}

.input-group {
    margin-top: 10px;
}

.form-control:focus {
    border-color: #62a8ea;
    box-shadow: 0 0 0 0.25rem rgba(98, 168, 234, 0.25);
}