/* Modern Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --primary-blue: #1a4a8e;
    --success-green: #27ae60;
    --danger-red: #e74c3c;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: #1e293b;
}

#success
{
	color:green;
}

/* --- Header & Logo Fix --- */
header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	margin-bottom:15px;
}

/* Logo Fix: Isse logo fatega nahi */
.main-logo {
    max-height: 85px; /* height fix rakhein taaki aspect ratio maintain rahe */
    width: auto;      /* width auto rahegi toh stretch nahi hoga */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Navigation Buttons */
.side-head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.side-head .btn {
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* --- Main Heading --- */
.heading h1 {
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin: 40px 0;
    letter-spacing: -1px;
    font-size: 2.5rem;
    position: relative;
}

/* --- Search Section (Premium Look) --- */
.With h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
	margin-top:20px;
}

.With h3::before {
    content: '';
    width: 6px;
    height: 24px;
    background: var(--danger-red);
    display: inline-block;
    margin-right: 12px;
    border-radius: 10px;
}

.warpper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

/* Form Styling */
label {
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
	margin-top: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(26, 74, 142, 0.1);
}

/* Search Button styling */
#search {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    color: white;
    height: 50px;
    margin-top: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
}

#search:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

#error
{
	font-size:13px;
	color:red;
}


/* Table Container - thoda space aur shadow ke liye */
.table-container {
    margin-top: 40px;
    overflow-x: auto;
    
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

/* Header Styling - Logo ke green color se match karta hua */
thead {
    background-color: #218838; /* Green shade from logo */
    color: white;
}

th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}


tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}


tbody tr:hover {
    background-color: #f1f7f1;
    transition: 0.3s;
}


.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}



#payment_container {
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-top: 50px;
	margin-bottom: 50px;
	border: 1px solid #e1e8ed;
}

/* Table Styling */
#payment_container table {
	width: 100%;
	margin-bottom: 25px;
	border-collapse: separate;
	border-spacing: 0 10px;
}

#payment_container th {
	background-color: #f8f9fa;
	color: #333;
	font-weight: 600;
	padding: 12px 15px;
	border-radius: 8px 0 0 8px;
	width: 40%;
	text-align: left;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#payment_container td {
	background-color: #ffffff;
	color: #555;
	padding: 12px 15px;
	border-radius: 0 8px 8px 0;
	border: 1px solid #f1f1f1;
	border-left: none;
	font-size: 15px;
}