/* styles.css */
body {
    font-family: Arial, sans-serif;
    
    margin: 0;
    padding: 0.4%;
    color: black; /* Main text color */
}

#arrange {
	
	display: flex;
	flex-direction: row;
	
}
#status {
	
	display: flex;
	flex-direction: column;
	right: 5px;
	width: 25%;
}

#logo {
	width: 25%;
	background-color: #E9CFEC;      /*Thistle2*/
}

#projectSelection {
    margin: 20px 0;
    max-width: 40%;
	background-color: #f9f9f9;
	top: 36.1%;
	left: 35%;
	position: absolute;
	display: flex;
	flex-direction: column;
	border: 1px solid #ccc;
    border-radius: 4px;
	position: absolute;
	z-index: 1000;
}

#projectSearch {
    width: 97%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;

}

#project {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    appearance: none; /* Removes default arrow */
}

#project option {
    padding: 10px;
}

#miradi {
	display: flex;
	flex-direction: column;
	
}

.btn {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap if they overflow */
    width: 45%; /* Set a fixed width */
    height: 90%; /* Set a fixed height */
    justify-content: space-between; /* Distribute buttons evenly */
	margin: 0.6%;
    align-items: center; /* Center align buttons vertically */
    padding: 10px; /* Add padding for some spacing */
    box-sizing: border-box; /* Ensure padding is included in width/height */
    border: 2px solid #ccc; /* Optional: Add a border around the container */
    border-radius: 10px; /* Optional: Add rounded corners */
    background-color: #f9f9f9; /* Optional: Add a background color */
}

.btn button {
    width: 40px; /* Fixed width for the buttons */
    height: 40px; /* Fixed height for the buttons */
    margin: 5px; /* Add some spacing between buttons */
    background: none; /* Remove default button background */
    border: none; /* Remove default button border */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.btn button img {
    width: 100%; /* Ensure the image fills the button */
    height: auto; /* Maintain image aspect ratio */
}



#status h2 {
	
	font-size: 12px;
	
}



.user-initial {
	top: 5%;
	right: 2%;
}
        
		
		
		.user-initial {
            width: 50px;
            height: 50px;
            background-color: #4CAF50; /* Green background */
            color: white; /* White text color */
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%; /* Make it a circle */
            font-size: 24px; /* Adjust font size */
            font-weight: bold; /* Bold text */
            text-transform: uppercase; /* Ensure it's uppercase */
        }

#map {
    height: 100vh;
    width: 100%;
}




.toggle-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    z-index: 9999;
}

.message.success {
    background-color: #28a745;
}

.message.error {
    background-color: #dc3545;
}


.auth-link {
    color: white; /* Text color */
    background-color: #007bff; /* Button background color */
    padding: 10px 20px; /* Padding for the link */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Font weight */
    position: absolute; /* Absolute positioning */
    
    transition: background-color 0.3s ease; /* Transition for hover effect */
}

.auth-link:hover {
    background-color: #0056b3; /* Darker background on hover */
}


#successMessage{
	display:none;
}

#search-container {
    background-color: white; /* Keeps background for contrast */
    padding: 15px;
    width: 15%; /* Reduced width for a smaller panel */
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 43%; /* Slightly adjusted position from the top */
    left: 6%;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    max-height: 60vh; /* Reduced max height */
}


#search-container label {
    font-weight: bold;
    margin-bottom: 3px; /* Reduced margin below labels */
    font-size: 14px; /* Slightly smaller font size */
}

#search-container input[type="text"],
#search-container input[type="date"],
#search-container select {
    width: 100%;
    padding: 3px; /* Reduced padding */
    margin-bottom: 5px; /* Reduced margin below inputs */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px; /* Consistent smaller font size */
}

#search-container button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px; /* Reduced padding */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    font-size: 14px; /* Slightly smaller font size */
}

#search-container button:hover {
    background-color: #45a049;
}

/* Style for the entire form */
#farmForm {
    width: 100%;
    max-width: 600px;
    margin: 0 auto; /* Center the form on the page */
    padding: 20px;
	position: absolute;
	z-index: 1000;
	top: 45%;
	left: 5%;
	height: 300px;
	display: none;
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Style for form groups */
.form-group1 {
    margin-bottom: 15px;
}

/* Label styling */
.form-group1 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Input, select, and textarea styling */
.form-group1 input[type="text"],
.form-group1 input[type="number"],
.form-group1 input[type="email"],
.form-group1 select,
.form-group1 textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Input and textarea focus effect */
.form-group1 input[type="text"]:focus,
.form-group1 input[type="number"]:focus,
.form-group1 input[type="email"]:focus,
.form-group1 select:focus,
.form-group1 textarea:focus {
    border-color: #007BFF; /* Blue border on focus */
    outline: none;
}

/* Style for the upload button */
.form-group1 input[type="file"] {
    padding: 5px;
    border: none;
}

/* Preview container styling */
#previewContainer {
    margin-top: 10px;
}

/* Button styling */
#farmForm button[type="button"] {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Button hover effect */
#farmForm button[type="button"]:hover {
    background-color: #0056b3;
}

/* Readonly input styling */
.form-group1 input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}



#polygonForm1 {
    background-color: white;
    padding: 20px;
    width: 300px;
    height: 500px;
    overflow-y: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 43%;
    left: 6%;
    z-index: 1000;
    display: none;
}

#polygonForm1 label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#polygonForm1 input[type="text"],
#polygonForm1 input[type="number"],
#polygonForm1 select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#polygonForm1 button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#polygonForm1 button:hover {
    background-color: #218838;
}

.form-group3 {
    margin-bottom: 20px;
}


#polylineForm {
    background-color: white;
    padding: 20px;
    width: 300px; /* Adjust width as needed */
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 43%; /* Adjust position from the top */
    left: 6%; /* Adjust position from the right */
    z-index: 1200; /* Ensure it's above the map */
    display: none; /* Initially hidden */
}

#polylineForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#polylineForm input[type="text"],
#polylineForm input[type="number"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#polylineForm button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#polylineForm button:hover {
    background-color: #218838;
}


#locationForm {
    background-color: white;
    padding: 20px;
    width: 300px; /* Adjust width as needed */
    border: 2px solid #ccc;
    border-radius: 8px;
	overflow-y: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 43%; /* Adjust position from the top */
    left: 6%; /* Adjust position from the right */
    z-index: 1200; /* Ensure it's above the map */
    display: none; /* Initially hidden */
}

#locationForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#locationForm input[type="text"],
#locationForm input[type="number"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#locationForm button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#locationForm button:hover {
    background-color: #218838;
}





#dataSelector {
        width: 8%;
        padding: 5px;
        background-color: transparent;
        position: absolute;
        top: 75%;
        right: 10px;
		display: flex;
		flex-direction:row;
		border: 1px solid maroon;
        border-radius: 4px;
		z-index: 1000;
    }


.leaflet-popup-content table {
    width: 100%;
    border-collapse: collapse;
    top: 44%;
    left: 4%;
}

.leaflet-popup-content th, .leaflet-popup-content td {
    padding: 5px;
    border: 1px solid #ddd;
    top: 44%;
    left: 6%;
}

.leaflet-popup-content button {
    margin-top: 10px;
    padding: 5px 10px;
    cursor: pointer;
    
}



header {
    background-color: #659EC7; /*Sky Blue3*/
    color: #C12283;  /*Maroon3*/
    text-align: left;
    padding: 0;
    font-size: 15px;
    font-weight: bold;
}

footer {
    background-color: #659EC7; //Sky Blue3
    color: #C12283;  /*Maroon3*/
    text-align: center;
    padding: 0;
    font-size: 13px;
}

#verify-container {
    background-color: white;
    padding: 20px;
    width: 50%; /* Adjust width as needed */
    height: 400px; /* Set a fixed height for the container */
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 43%; /* Adjust position from the top */
    left: 6%; /* Adjust position from the right */
    z-index: 1000; /* Ensure it's above the map */
    display: none; /* Initially hidden */
    
    flex-direction: column;
    justify-content: space-between; /* Ensures the form and preview occupy distinct sections */
}



.verify-container form {
    height: 100%; /* Form occupies 40% of the container height */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-container {
    height: 60%; /* Preview container occupies the remaining 60% */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    overflow: hidden; /* Prevents the image from overflowing the container */
}

.image-preview {
    display: none;
    max-width: 100%;
    max-height: 100%; /* Ensures the image height does not exceed the height of the container */
}

.verify-container input[type="file"] {
    display: none;
}

form {
    overflow-y: auto;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

form input[type="text"],
form select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type="submit"] {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}


/* General styling for the Leaflet layer control */
.leaflet-control-layers {
    font-family: Arial, sans-serif;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 5px; /* Rounded corners */
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

/* Styling for the layer control title */
.leaflet-control-layers label {
    font-weight: bold;
    color: #333; /* Dark text color */
}

/* Styling for the checkboxes and radio buttons */
.leaflet-control-layers input[type="radio"],
.leaflet-control-layers input[type="checkbox"] {
    margin-right: 5px;
}

/* Styling for the text labels next to the checkboxes/radios */
.leaflet-control-layers label span {
    font-size: 14px;
    color: #555; /* Slightly lighter text color */
}

/* Hover effect for the layer control labels */
.leaflet-control-layers label:hover {
    background-color: #f0f0f0; /* Light grey background on hover */
    border-radius: 3px;
}

/* Adjusting the width of the layer control to fit longer names */
.leaflet-control-layers-expanded {
    width: 200px; /* Increase or decrease as needed */
}

/* Customize the appearance of the "Base Layers" and "Overlays" section headers */
.leaflet-control-layers-separator {
    border-bottom: 1px solid #ccc;
    margin: 8px 0;
}

.leaflet-control-layers-base,
.leaflet-control-layers-overlays {
    margin-bottom: 10px;
}

/* Optional: Styling for the layer control toggle button */
.leaflet-control-layers-toggle {
    background-color: #007bff; /* Blue background */
    border-radius: 5px; /* Rounded corners */
    color: white; /* White icon */
    padding: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

/* Change toggle button on hover */
.leaflet-control-layers-toggle:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Adjust position and spacing of the layers control (optional) */
.leaflet-top .leaflet-control-layers {
    margin-top: 10px;
    margin-left: 10px;
}

#bannerContainer {
    max-height: 1000px; /* Visible height */
    transition: max-height 0.3s ease-in-out; /* Smooth transition */
    height: 70%;
	top: 42%;
	Position: relative;
	z-index: 1000;
}

#bannerContainer.hidden {
    max-height: 0; /* Collapsed height */
}


.banner-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

.banner h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.banner p {
    font-size: 16px;
    color: #555;
}

.full-content {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    width: 100%;
    height: calc(100vh - 60px); /* Adjust based on the header height */
    overflow-y: auto;
}

.read-more {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}




#bannerToggleButton {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    z-index: 1001; /* Ensure the button is above other content */
}

#bannerContainer {
    transition: height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 400px; /* Visible height of the banner container */
	position: absolute;
	width: 70%;
	right: 15%;
}

#bannerContainer.hidden {
    max-height: 0; /* Collapse height when hidden */
}

.banner-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.label {
	font-size: 10px;
}

#viewForm{
			
	display: none;
		}

.form-container {
    height: 300px;
    width: 400px;
    margin: 20px auto;
    padding: 20px;
	position: absolute;
	top: 45%;
	left: 5%;
	overflow-y: auto;
	z-index: 1000;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
}

.form-group button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.form-group button:hover {
    background-color: #0056b3;
}

.full-width {
    width: 100%;
}

#additionalFields {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

#additionalFields label {
    color: #007bff;
}

.preview-container {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 200px;
    overflow: auto;
}

.preview-container img,
.preview-container video {
    max-width: 100%;
    max-height: 100%;
}

.preview-container p {
    color: #555;
    font-size: 14px;
    text-align: center;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

button[type="button"] {
    margin-right: 10px;
}



/* Style for the div */
#pageViewReport {
    position: absolute; /* Absolute positioning */

    padding: 0; /* Padding inside the div */
    background-color: #f9f9f9; /* Background color */
    border: 1px solid #ddd; /* Border around the div */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow-y: auto; /* Scrollable content if it overflows */
    z-index: 1100; /* Adjust z-index if needed */
	width: 150px;
	height: 100px;
	bottom: -33%;
	right: 1%;
}

	
#container1 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 600px;
            height: 60vh;
			display: none;
	        position: absolute;
	        top: 42%;
	        left: 5%;
			z-index: 1001;
            overflow-y: auto;
        }

.form-container1, .table-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            flex: 1 1 45%; /* Ensure both containers take up equal space */
            display: flex;
            flex-direction: column;
        }
        .form-container1 h2, .table-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        .form-container1 form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow-y: auto;
            flex-grow: 1; /* Allow form to take up available space */
        }
         .form-container1{
        
           overflow-y: auto;
        }
        .form-container1 form label,
        .table-container table th,
        .table-container table td {
            font-weight: bold;
        }
        .form-container1 form input,
        .form-container1 form select,
        .form-container1 form button {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .form-container1 form button {
            background-color: #007BFF;
            color: #fff;
            cursor: pointer;
        }
        .form-container1 form button:hover {
            background-color: #0056b3;
        }
        .table-container {
            overflow-y: auto; /* Vertical scrolling */
            overflow-x: auto; /* Horizontal scrolling */
        }
        .table-container table {
            width: 100%;
            border-collapse: collapse;
        }
        .table-container table th,
        .table-container table td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }






/* Modal container */


@media (max-width: 600px) {

   #bannerContainer {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 400px; /* Visible height of the banner container */
	position: absolute;
	display:none;
	width: 70%;
	right: 15%;
}

#pageViewReport {
    position: absolute; /* Absolute positioning */

    padding-bottom: 3px; /* Padding inside the div */
    background-color: #f9f9f9; /* Background color */
    border: 1px solid #ddd; /* Border around the div */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow-y: auto; /* Scrollable content if it overflows */
    z-index: 1100; /* Adjust z-index if needed */
	width: 100px;
	height: 100px;
	bottom: 5%;
	right: 1%;
}

#map{
	height: 86vh;
	width: 100%;
	
}
header {
    background-color: #659EC7; /*Sky Blue3*/
    color: #C12283;  /*Maroon3*/
    text-align: left;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
}

footer {
    background-color: #659EC7; //Sky Blue3
    color: #C12283;  /*Maroon3*/
    text-align: center;
    padding: 0;
    font-size: 11px;
}

#arrange {
	
	display: flex;
	flex-direction: row;
	height: 100px;
	
	
}

#status {
	
	display: flex;
	flex-direction: column;
	right: 5px;
	width: 35%;
	overflow-y: auto;
}

#logo {
	width: 35%;
	background-color: #E9CFEC;      /*Thistle2*/
}

#logo h1 {
	font-size: 14px;
	padding: 2px;
}

#status h1 {
	font-size: 14px;
}

#status h2 {
	font-size: 13px;
}

.user-initial {
	top: 5%;
	right: 2%;
}
.user-initial {
            width: 20px;
            height: 20px;
            background-color: #4CAF50; /* Green background */
            color: white; /* White text color */
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%; /* Make it a circle */
            font-size: 14px; /* Adjust font size */
            font-weight: bold; /* Bold text */
            text-transform: uppercase; /* Ensure it's uppercase */
        }
		
		.btn button {
    width: 30px; /* Fixed width for the buttons */
    height: 30px; /* Fixed height for the buttons */
    margin: 5px; /* Add some spacing between buttons */
    background: none; /* Remove default button background */
    border: none; /* Remove default button border */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.btn {
    display: flex;
    flex-wrap: wrap; /* Allows buttons to wrap if they overflow */
    width: 30%; /* Set a fixed width */
    height: 90%; /* Set a fixed height */
    justify-content: space-between; /* Distribute buttons evenly */
	margin: 0.6%;
	overflow-y: auto;
    align-items: center; /* Center align buttons vertically */
    padding: 10px; /* Add padding for some spacing */
    box-sizing: border-box; /* Ensure padding is included in width/height */
    border: 2px solid #ccc; /* Optional: Add a border around the container */
    border-radius: 10px; /* Optional: Add rounded corners */
    background-color: #f9f9f9; /* Optional: Add a background color */
}

#farmForm {
    width: 100%;
    max-width: 230px;
    margin: 0 auto; /* Center the form on the page */
    padding: 20px;
	position: absolute;
	z-index: 1000;
	top: 30%;
	left: 12%;
	height: 300px;
	font-size: 12px;
	display: none;
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#polygonForm1 {
    background-color: white;
    padding: 20px;
    width: 230px; /* Adjust width as needed */
    border: 2px solid #ccc;
    font-size: 12px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 30%; /* Adjust position from the top */
    left: 12%; /* Adjust position from the right */
    z-index: 1000; /* Ensure it's above the map */
    display: none; /* Initially hidden */
}

#verify-container {
    background-color: white;
    padding: 20px;
    width: 230px; /* Adjust width as needed */
    height: 400px; /* Set a fixed height for the container */
    border: 2px solid #ccc;
    font-size: 12px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 30%; /* Adjust position from the top */
    left: 12%; /* Adjust position from the right */
    z-index: 1000; /* Ensure it's above the map */
    display: none; /* Initially hidden */
    
    flex-direction: column;
    justify-content: space-between; /* Ensures the form and preview occupy distinct sections */
}
#locationForm {
    background-color: white;
    padding: 20px;
    height: 200px;
    width: 230px; /* Adjust width as needed */
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 12px;
	overflow-y: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 30%; /* Adjust position from the top */
    left: 12%; /* Adjust position from the right */
    z-index: 1200; /* Ensure it's above the map */
    display: none; /* Initially hidden */
}

#polylineForm {
    background-color: white;
    padding: 20px;
    width: 230px; /* Adjust width as needed */
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Position form absolutely */
    top: 30%; /* Adjust position from the top */
    left: 12%; /* Adjust position from the right */
    z-index: 1200; /* Ensure it's above the map */
    display: none; /* Initially hidden */
}

#container1 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 230px;
            height: 60vh;
			display: none;
	        position: absolute;
	        font-size: 12px;
	        top: 25%;
	        left: 12%;
			z-index: 1601;
            overflow-y: auto;
        }
        
        #bannerContainer {
    max-height: 1000px; /* Visible height */
    transition: max-height 0.3s ease-in-out; /* Smooth transition */
    height: 70%;
	top: 32%;
	Position: absolute;
	font-size: 12px;
	z-index: 1500;
}

#bannerContainer.hidden {
    max-height: 0; /* Collapsed height */
}


.banner-slider {
    display: flex;
    transition: transform 5.5s ease-in-out; /* Slower transition speed */
}

.banner {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    transition: height 0.5s ease-in-out; /* Ensure banner height changes smoothly */
}


.banner h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.banner p {
    font-size: 16px;
    color: #555;
}

.full-content {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    width: 100%;
    height: calc(100vh - 60px); /* Adjust based on the header height */
    overflow-y: auto;
}

.read-more {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}




#bannerToggleButton {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    z-index: 1001; /* Ensure the button is above other content */
}

#search-container {
    background-color: white; /* Keeps background for contrast */
    padding: 15px;
    width: 200px; /* Reduced width for a smaller panel */
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 30%; /* Slightly adjusted position from the top */
    left: 12%;
    font-size: 12px;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    max-height: 60vh; /* Reduced max height */
}


#viewForm{
	top: 30%; /* Slightly adjusted position from the top */
    left: 12%;
    font-size: 12px;
	
		}

}


@media (max-width: 700px) {
    
   

#pageViewReport {
    position: absolute; /* Absolute positioning */

    padding-bottom: 3px; /* Padding inside the div */
    background-color: #f9f9f9; /* Background color */
    border: 1px solid #ddd; /* Border around the div */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow-y: auto; /* Scrollable content if it overflows */
    z-index: 1100; /* Adjust z-index if needed */
	width: 100px;
	height: 100px;
	bottom: 5%;
	right: 1%;
}

#map{
	height: 86vh;
	width: 100%;
	
}

header {
    background-color: #659EC7; /*Sky Blue3*/
    color: #C12283;  /*Maroon3*/
    text-align: left;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
}

footer {
    background-color: #659EC7; //Sky Blue3
    color: #C12283;  /*Maroon3*/
    text-align: center;
    padding: 0;
    font-size: 11px;
}

}