/* =========================
   Root Variables
========================= */
:root {
    --bg-color-light: #f4f6f9;
    --bg-color-dark: #121212;
    --text-color-light: #222;
    --text-color-dark: #f5f5f5;
    --card-bg-light: #ffffff;
    --card-bg-dark: #1e1e1e;
}

/* =========================
   Global Reset & Base
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-color-light);
    color: var(--text-color-light);
    line-height: 1.6;
    padding: 40px 20px;
}

/* =========================
   Header
========================= */
header {
    background: #1a1a1a;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

/* =========================
   Navigation
========================= */
nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    margin-left: 20px;
}

nav a:hover {
    color: #fff;
}

/* =========================
   Layout
========================= */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* =========================
   Notification Badge
========================= */
.notif-badge {
    position: relative;
    display: inline-block;
}

.notif-badge span {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* =========================
   Typography
========================= */
h2, h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    font-size: 1.3rem;
    margin-top: 30px;
}

p {
    margin-bottom: 16px;
    color: #4b5563;
}

.welcome {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #444;
}

hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 32px 0;
}

/* =========================
   Links
========================= */
a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   Containers (Forms & Tables)
========================= */
form,
table {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 16px;
}

/* =========================
   Forms
========================= */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 14px;
    color: #374151;
}

input[type="text"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    margin-top: 18px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

input[type="submit"]:hover {
    background-color: #1e40af;
}

input[type="submit"]:active {
    transform: translateY(1px);
}

/* =========================
   Tables
========================= */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

table th,
table td {
    padding: 12px 14px;
    text-align: left;
}

table th {
    background-color: #f3f4f6;
    font-weight: 700;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

table tr:not(:last-child) td {
    border-bottom: 1px solid #e5e7eb;
}

table tr:hover {
    background-color: #f9fafb;
}

table a {
    color: #2563eb;
}

/* =========================
   Utility / Status Styling
========================= */
.status-open {
    color: #059669;
    font-weight: 600;
}

.status-closed {
    color: #dc2626;
    font-weight: 600;
}

.priority-high {
    color: #dc2626;
    font-weight: 700;
}

.priority-medium {
    color: #d97706;
    font-weight: 600;
}

.priority-low {
    color: #059669;
}

/* =========================
   Services Grid
========================= */

.admindashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 3fr));
    gap: 25px;
    margin-top: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.service-box h3 {
    margin-top: 0;
    font-size: 22px;
    color: #222;
}

.service-box p {
    color: #555;
    line-height: 1.5;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    table {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

.center-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

    .tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        justify-content: center;
    }
	.tab {
		padding: 10px 20px;
		background: #e0e0e0;
		border-radius: 6px;
		cursor: pointer;
		font-weight: bold;
	}
	.tab.active {
		background: #2563eb;
		color: white;
	}
	.services-grid {
		display: none;
	}
	.services-grid.active {
		display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two equal-width columns */
    gap: 20px; /* Space between boxes */
    margin-top: 20px;
}

	
	.owner3-img {
		width: 300px;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		display: block;
		margin: 0 auto;
	}
	.menu-card {
		text-align: center;        /* Centers everything inside */
		margin: 30px auto;
		max-width: 400px;
	}

	.owner3-img {
		width: 400px;              /* Adjust size as needed */
		height: auto;
		border-radius: 10px;
		display: block;
		margin: 0 auto 15px auto;  /* Centers image + adds spacing */
	}

	.owner-name {
		font-size: 1.4rem;
		font-weight: bold;
		margin-top: 10px;
	}
 
    .content-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0
    }
