     body {
            font-family: Arial, sans-serif;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            margin-top: 0px;
            color: #333;
            display: flex;
        }

        .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 80%;
            max-width: 1200px;
            margin-top: 50px;
        }

        .map-container {
            position: relative;
            width: 80%;
            max-width: 1000px;
            height: 500px;
            margin-top:10px;
            border: 2px solid #ccc;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: auto;
            user-select: none;
        }

        .map-container img {
            user-select: none;
            object-fit: cover;
            pointer-events: none;
        }

        .point {
            position: absolute;
            width: 24px;
            height: 24px;
            cursor: pointer;
            transform: translate(-50%, -50%);
            transition: transform 0.2s, background-color 0.2s;
        }

        .point:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .map-container form {
            position: absolute;
            bottom: 20px;
            left: 10px;
        }

        .form-container {
            margin: auto;
            width: 40%;
            max-width: 400px;
            padding: 10px;
            background-color: white;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .form-header {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-bottom: 5px;
            color: #555;
            font-size: 24px;

        }

        input[type="text"],
        input[type="tel"],
        input[type="email"],
        input[type="date"],
        textarea,
        input[type="file"] {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 16px;
            box-sizing: border-box;
            transition: border-color 0.2s;
        }

        input[type="text"]:focus,
        input[type="tel"]:focus,
        input[type="email"]:focus,
        input[type="date"]:focus,
        textarea:focus,
        input[type="file"]:focus {
            border-color: #007bff;
            outline: none;
        }

        input[type="file"] {
            margin-bottom: 15px;
        }

        button {
            padding: 12px 20px;
            border: none;
            background-color: #2c3762;
            color: white;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        button:hover {
            background-color: #2c3762;
            transform: scale(1.05);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s;

        }

        @keyframes fadeIn {
            from {opacity: 0;}
            to {opacity: 1;}
        }

        .modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            width: 80%;
            font-size: 18px;
            max-width: 500px;
            animation: slideIn 0.3s;
            text-align: center; /* Center text in the modal */
        }

        @keyframes slideIn {
            from {transform: translateY(-50px);}
            to {transform: translateY(0);}
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
        }

        #modalImage {
            max-width: 100%;
            display: block;
            margin-top: 10px;
             margin-bottom: 10px;
        }

        .point.booked {}

        .modal-description {
            white-space: pre-line;
        }

        .delete-point {
            font-size: 14px;
            background: none;
            padding: 0;
            width: 20px;
            height: 20px;
            line-height: 1;
            color: black;
        }

        .point img {
            width: 25px;
            height: auto;

        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .form-container {
                width: 90%;
                max-width: 400px;
            }

            .map-container {
                width: 100%;
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5em;
            }

            .map-container {
                height: 300px;
            }

            .form-container {
                width: 95%;
                padding: 15px;
            }

            input[type="text"],
            input[type="tel"],
            input[type="email"],
            input[type="date"],
            textarea,
            input[type="file"],
            button {
                font-size: 14px;
                padding: 10px;
            }
        }
 @media (max-width: 480px) {
    .modal-content {
        margin-top: 80px;
        width: 90%;
        max-width: 90%;
        padding: 15px;
        font-size: 16px;
    }
}
 @media (max-width: 480px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    textarea,
    input[type="file"],
    button {
        font-size: 14px;
        padding: 6px;
    }
}
