.wrap {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 12px;
}

h1 {
    color: black;
    text-align: center;
}

#add-new-station {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 4px;
}

#add-new-station:hover {
    background-color: #218838;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
}

.form-group label {
    flex: 1;
    margin-right: 10px;
    text-align: right;
    padding-top: 8px;
}

.form-group input {
    flex: 2;
    padding: 8px;
    box-sizing: border-box;
}

.form-group input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 10px;
}

.form-group input[type="submit"]:hover {
    background-color: #218838;
}


#search-station {
    padding: 10px;
    font-size: 16px;
    width: 75%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

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

.wp-list-table th, .wp-list-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.wp-list-table th {
    background-color: #f8f9fa;
    color: #333;
}

.wp-list-table tr:nth-child(even) {
    background-color: white;
}

.edit-station, .delete-station {
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.search-station-button{
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.edit-station {
    background-color: #ffc107;
    color: white;
}

.edit-station:hover {
    background-color: #e0a800;
}

.delete-station {
    background-color: #dc3545;
    color: white;
}

.delete-station:hover {
    background-color: #c82333;
}

.search-station-button{
    background-color: #007BFF;
    color: white;
}

.search-station-button:hover {
    background-color: #0056b3;
}

#add-station-modal, #edit-station-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 1200px;
}

#add-station-modal h2, #edit-station-modal h2 {
    margin-top: 0;
}

#add-station-modal label, #edit-station-modal label {
    display: block;
    margin-top: 10px;
}

#add-station-modal input, #edit-station-modal input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

#add-station-modal input[type="submit"], #edit-station-modal input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
    margin-top: 15px;
}

#add-station-modal input[type="submit"]:hover, #edit-station-modal input[type="submit"]:hover {
    background-color: #218838;
}

#close-add-station, #close-edit-station {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 15px;
    margin-left: 10px;
}

#close-add-station:hover, #close-edit-station:hover {
    background-color: #c82333;
}

#download-csv {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    
}

#download-csv:hover {
    background-color: #0056b3;
}

#add-station-modal {
    display: none;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

.column .form-group {
    margin-bottom: 15px;
}

.column .form-group label {
    display: block;
    margin-bottom: 5px;
}

.column .form-group input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.form-group {
    text-align: right;
    margin-top: 20px;
}

#close-add-station {
    margin-left: 10px;
}