body {
}

.font-size-16 { font-size: 16px; }
.font-size-18 { font-size: 18px; }
.font-size-20 { font-size: 20px; }
.font-size-22 { font-size: 22px; }
.font-size-24 { font-size: 24px; }
.font-size-26 { font-size: 26px; }
.font-size-28 { font-size: 28px; }

.text-color-gray { color: #7c889a; }

.drop-zone {
    border: 3px dashed #ccc;
    background: #f2f2f2;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}

.drop-zone p {
    margin: 0;
}

#file_input {
    display: none;
}

.image-container {
    padding: 10px;
    background: #fafafa;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    position: relative;
}

.image-container:first-child {
    margin-top: 10px;
}

.image-container:nth-child(even) {
    background: #f2f2f2;
}

.image-container:last-child {
    border-bottom: 1px solid #cccccc;
}

.delete-image {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
}

#map {
    height: 400px;
}

/*On mobile only 200px*/
@media (max-width: 768px) {
    #map {
        height: 200px;
    }
}

#search-container {
    position: relative;
}
#search-input {
    padding: 8px;
    box-sizing: border-box;
}

#clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #999;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none; /* Initially hidden */
}
#search-results {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05), 0 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background: white;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}
.result-item {
    padding: 8px;
    cursor: pointer;
}
.result-item:hover, .result-item.active {
    background: #eee;
}

.lat-lng-card-body {
    border-radius: 0 0 5px 5px;
    border-top: 0 !important;
}

.lat-lng-card-body i {
    font-size: 30px;
}

.blog-posts a:hover {
    text-decoration: none;
}

.blog-posts .card-title {
    font-size: 1.5rem;
    line-height: normal;
}

.blog-post-content a {
    text-decoration: underline;
}

.coupon {
    border: 2px dashed #ccc;
    padding: 3px 8px;
    margin: 0 8px;
}

.table-responsive .dropdown-menu {
    transform: translate(0px, 38px) !important;
}

#credits-block {
    width: 150px;
}

#credits-texts {
    background-color: #f2f2f2;
}