/* css/plugin-style.css */

.project-submission-wrapper .card-header {
    border-bottom: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0.375rem; /* Matches Bootstrap's form-control border-radius */
    border: 1px solid #dee2e6;
    transition: border-color .15s ease-in-out;
}

/* Style for invalid map (when polygon is not drawn) */
.map-container.is-invalid {
    border-color: #dc3545; /* Bootstrap's danger color */
}

/* Responsive map height */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }
}