/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    max-width: 800px;
    padding: 2rem;
    margin: 50px auto;
    text-align: center;
}

/* Heading Styling */
h1 {
    font-size: 2.2rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Plot Details Styling */
.plot-details {
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Sold Plot Styling */
.sold {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #721c24;
    margin-top: 10px;
}

/* Available Plot Styling */
.available {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #155724;
    margin-top: 10px;
}

/* Button Styling */
button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #0056b3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00408c;
}

/* Link Styling */
a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Alert Styling */
.alert {
    padding: 15px;
    font-size: 14px;
    color: #ffffff;
    background-color: #dc3545;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Dashboard Greeting */
.dashboard h2 {
    font-size: 1.8rem;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.dashboard p {
    font-size: 1rem;
    color: #555;
}

/* Footer Link */
.footer-link {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-link a {
    color: #555;
    font-size: 14px;
}

/* For mobile responsiveness */
@media (max-width: 767px) {
    .container {
        padding: 15px;
    }
}

/* Plot Box Styling */
.plot-box {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.plot-box.sold {
    background-color: #f8d7da;
    color: #721c24;
}

.plot-box.available {
    background-color: #d4edda;
    color: #155724;
}

.plot-link {
    text-decoration: none;
    font-weight: bold;
}

/* Total Amount Styling */
.total-amount {
    background-color: rgb(7, 7, 117);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Text Colors */
.text-primary {
    color: #007bff !important;
}

.text-success {
    color: #28a745 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-secondary {
    color: #6c757d !important;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Card Styling Adjustments */
.card {
    background: rgba(255, 255, 255, 0.8); /* Translucent white */
    color: #333; /* Dark text for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Navbar Background */
.navbar-custom {
    background-color: rgba(0, 86, 179, 0.9);
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460, #1c1c1c, #232323);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    color: #fff; /* Ensure text is readable on a darker background */
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar with dark styling */
.navbar-custom {
    background-color: rgba(26, 26, 46, 0.9);
    color: #fff;
}

/* Navbar links styling */
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff;
    font-weight: bold;
}

/* Cards with dark styling */
.card {
    background: rgba(40, 40, 60, 0.9); /* Dark translucent card background */
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.7);
}

/* Summary section headings */
.summary-heading {
    color: #dcdcdc;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Additional text adjustments */
.text-white {
    font-weight: bold;
}
#map {
    position: relative;
    width: 800px;  /* Map width */
    height: 800px; /* Map height */
    background: url('map-background.png') no-repeat center;
    background-size: contain; /* Maintain aspect ratio */
    border: 2px solid black;
}
/* Basic styles for the page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h2 {
    text-align: center;
    margin-top: 20px;
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

table th, table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background-color: #4CAF50;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
/* General Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Styling for the header of the table */
h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    table {
        display: none; /* Hide table on smaller screens */
    }
    .table-responsive {
        display: block;
    }
}

/* Card System Styling */
.card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.card .details {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.card .details span {
    display: block;
    margin-bottom: 5px;
}

.card .payment-amount {
    font-size: 16px;
    color: #4CAF50;
    font-weight: bold;
}

/* Mobile View for Card System */
@media screen and (max-width: 600px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

