﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    padding: 10px;
    line-height: 1.5;
     overflow-x: hidden; /* Prevents horizontal scroll on the page */
}

  

       
   
    
/* Container */
.container {
    max-width: 100%;
    padding: 15px;
    margin: 0 auto;
}

/* Layout Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Header */
header {
    text-align: center;
    background-color: #0275d8;
    padding: 20px;
    color: white;
}

header h1 {
    font-size: 1.8em;
}

header a {
    color: white;
    text-decoration: none;
}

/* Label */
label {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Inputs (Textboxes, Dropdowns, File Uploads) */
input[type="text"],
input[type="password"],
select,
textarea,
input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 15px;
}

input[type="file"] {
    padding: 5px;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"] {
    width: 100%;
    padding: 10px;
    background-color: #0275d8;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 15px;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #025aa5;
}

/* GridView */
.grid-view {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.grid-view th,
.grid-view td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.grid-view th {
    background-color: #0275d8;
    color: white;
}

/* Links */
a {
    color: #0275d8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Page-Specific Styles */
/* Rent Collection, Villas, Rooms, etc. */
.collection-section,
.villa-section,
.room-section,
.user-section {
    padding: 10px;
}

/* Forms */
.form-container {
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Reports */
.report-table {
    width: 100%;
    border-collapse: collapse;
}

.report-table th,
.report-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Login Page */
.login-container {
    max-width: 100%;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.login-container input[type="text"],
.login-container input[type="password"] {
    margin-bottom: 15px;
}

/* Media Queries */
@media (min-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    button,
    input[type="submit"],
    input[type="button"] {
        width: auto;
        padding: 10px 30px;
    }

    .form-container {
        max-width: 600px;
        margin: 0 auto;
    }
}



/* Mobile menu icon */
#mobileMenuIcon {
    padding: 10px;

    position: absolute;
    top: 5px;  /* Adjust the vertical positioning */
    left: 10px; /* Position the icon to the left side */
    z-index: 1001;
}


   .mobile-menu-icon span {
    font-size: 22px; /* Change the size to whatever you need */
   
}







