/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    text-align: center;
    overflow-y: auto;
}

.btn-install {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    margin: 15px auto;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-install:hover {
    background-color: #45a049;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 400px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

/*.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
} */
    
    .popup-content {
    background: white;
    padding: 10px; /* Reduced padding */
    border-radius: 10px;
    width: 70%; /* Reduced width from 90% */
    max-width: 600px; /* Set a max width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}


.popup-content h2 {
    text-align: center;
    color: #4CAF50;
}

.popup-content input, 
.popup-content textarea {
    display: flex;
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content button {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size:16px;
    margin-top: 10px;
}

.close-btn {
    float:right;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    padding:5px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
}

.enquire-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.enquire-button:hover {
    background-color: #218838;
}

.option-section {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    padding: 20px;
    gap:15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.option-section label {
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

.upload-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.upload-section div {
    width: 48%;
}



.areas-container {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: center; /* Aligns items in the center */
    gap: 20px; /* Space between items */
}

.area-box {
    background-color: #d4f4a6; /* Light green background */
    padding: 20px;
    text-align: center;
    width: 200px; /* Adjust width as needed */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

