.lable-sub
 {
    padding: 15px 0;
}
/* Container for the banner map */
#banner_map {
    height: 600px;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

/* Filters Section */
#banner_map + div {
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

#banner_map + div label {
    font-size: 16px;
    margin-right: 10px;
}

#banner_map + div select {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-right: 15px;
}

#banner_map + div button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#banner_map + div button:hover {
    background-color: #005d8c;
}

/* Import/Export Section */
.wrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.wrap h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.wrap form {
    margin-bottom: 20px;
}

.wrap input[type="file"],
.wrap input[type="submit"],
.wrap button {
    padding: 10px 15px;
    font-size: 16px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.wrap input[type="file"] {
    width: 100%;
}

.wrap input[type="submit"],
.wrap button {
    background-color: #0073aa;
    color: white;
    cursor: pointer;
}

.wrap input[type="submit"]:hover,
.wrap button:hover {
    background-color: #005d8c;
}

/* Export Excel Button */
.wrap .button-primary {
    background-color: #4CAF50;
    color: white;
}

.wrap .button-primary:hover {
    background-color: #45a049;
}


/* General Styles */
#banner_map {
    height: 500px;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
}



/* Filters Section */
#banner_filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#banner_filters label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

#banner_filters select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

#apply-filters {
    padding: 10px 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

#apply-filters:hover {
    background: #005f8d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #banner_filters {
        flex-direction: column;
        align-items: center;
    }
    
    #banner_filters label, #banner_filters select, #apply-filters {
        width: 100%;
    }
    
    #banner_map {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    #banner_map {
        height: 350px;
    }
}
/* ////////////////////////////////////////////////////////////////// */

