﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form {
    width: 90%;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
input[type='number'],
input[type='button'] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type='button'] {
    background: #007bff;
    color: white;
    cursor: pointer;
    border: none;
}

    input[type='button']:hover {
        background: #0056b3;
    }

/* Location Display */
#locationDisplay {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

/* Map Section */
#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Locations List */
#locationsList {
    list-style: none;
    padding: 0;
}

    #locationsList li {
        background: #e9ecef;
        padding: 10px;
        margin: 5px 0;
        border-radius: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #locationsList button {
        background: red;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }

/* Responsive Design */
@media (max-width: 600px) {
    #map {
        height: 300px;
    }

    input[type='number'], input[type='button'] {
        font-size: 14px;
    }

    #locationDisplay {
        font-size: 14px;
    }
}
