body {
    padding-left: 0;
}

.page-header {
    background-color: #6DDCBD;
    margin-top: 0;
    padding: 20px 0 20px 20px;
}

.header-right {
    float: right;
    font-size: 20pt;
}

.header-left {
    float: left;
}

.header-title {
    font-size: 30pt;
    color: #ffffff;
}

.content {
    margin-left: 40px;
}

.date {
    color: #828282;
}

.save {
    float: right;
}

.event-form textarea, .event-form input {
    width: 100%;
}

.top-menu, .top-menu:hover, .top-menu:visited {
    color: #ffffff;
    float: right;
    font-size: 26pt;
    margin-right: 20px;
}

.event {
    margin-bottom: 40px;
    margin-top: 10px;
}


#specialbigmap {
    height: 1000px;
}

#eventmap {
    height: 95vh;
    width: 95vw;
    margin: 25px;
}

/* Resize the "display_raw" textbox */
.django-leaflet-raw-textarea {
    width: 40%;
}

#logout-form {
  display: inline;
}
#logout-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.eventicon {
    max-height: 200px;
    object-fit: cover; /* Crops the image to fit */
}

.radio-buttons {
    margin-bottom: 1rem;
}

.error-message {
    color: red;
    font-weight: bold; /* Optional */
    margin-top: 10px; /* Optional */
}

.leaflet-control-event-info {
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-right: 10px;
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.content-container {
    display: flex;
    justify-content: space-between; /* Creates spacing */
}

.title-time-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

#image-container {
    margin-left: 15px; /* Adds space between the image and the title-time-container */
    /*display: flex;*/
}

#modal-image {
    max-width: 125px;  /* You can adjust the size of the image as needed */
    height: auto;
    /*border-radius: 5px; /* Optional: rounded corners */
}    

table.sortable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.sortable th, table.sortable td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

table.sortable th {
    background-color: #f4f4f4;
    cursor: pointer;
}

table.sortable tr:hover {
    background-color: #f9f9f9;
}