body {
	background: red;

    font-family: Arial, sans-serif;
    padding: 20px 40px;
    background: #f5f5f8;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9em;
}

h2 {
    margin-bottom: 15px;
}

.filter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-box input,
.filter-box select,
.filter-box button {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.filter-box button {
    background: #0078ff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card h3 {
    margin-top: 0;
}

.add-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.add-form textarea {
    grid-column: 1 / -1;
    min-height: 60px;
}

.add-form button {
    grid-column: 1 / -1;
    width: 150px;
}

.resume-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.resume-table th,
.resume-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.resume-table th {
    background: #f0f0f5;
    text-align: left;
    font-weight: bold;
}

.btn {
    padding: 6px 10px;
    background: #0078ff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.status {
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-size: 0.85em;
}

.status.pending { background: #6c757d; }
.status.reviewed { background: #0078ff; }
.status.shortlisted { background: #28a745; }
.status.rejected { background: #dc3545; }

.delete-link {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.9em;
    margin-right: 5px;
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    color: #0078ff;
    cursor: pointer;
    font-size: 0.9em;
}

.pagination {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination a {
    text-decoration: none;
    color: #0078ff;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 6px;
    width: 400px;
    max-width: 90%;
}

.close-modal {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

/* Login */
.login-body {
    background: #f0f0f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-form {
    background: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form h2 {
    margin-top: 0;
}

.login-form input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.login-form button {
    padding: 8px;
    border-radius: 4px;
    border: none;
    background: #0078ff;
    color: #fff;
    cursor: pointer;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.85em;
}

.logo a {
	font-size: 1.8em;
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
	background: #f0f0f5;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 6px;


}

.top-links a {
    margin-left: 12px;
	text-decoration: none;
    color: #0078ff;
    font-weight: 700;
	font-size: 1em;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}
.top-links a:hover {
    text-decoration: underline;
}

.hero-header {
    width: 100%;
    height: 400px;
    background-image: url('../banner.jpg'); /* Replace with your image filename */
/*    background-size: 100% auto; */
	background-repeat: no-repeat;
	background-size: cover;
 /*	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff; /* optional backdrop */

    background-position: center top;
     position: relative;  
     margin-bottom: 20px;
    border-radius: 8px; 
	padding-top: 15%;

}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    color: white;
    border-radius: 8px;
}

.hero-title {
    font-size: 4.8em;
    font-weight: bold;
    margin: 0;
}

.hero-subtitle {
    font-size: 2.4em;
    margin-top: 8px;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dash-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}

.dash-card:hover {
    transform: translateY(-4px);
}

.dash-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.topnav {
    background: #333;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 6px;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    padding: 12px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background: #575757;
}

.topnav .right {
    float: right;
}

.site-footer {
    margin-top: 40px;
    padding: 20px;
    background: #333;
    color: #f2f2f2;
    text-align: center;
    border-radius: 6px;
    font-size: 0.95em;
}

.site-footer a {
    color: #9ecbff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.visitor-count {
    margin-top: 6px;
    font-size: 0.9em;
    opacity: 0.85;
}

.contact-info {
    margin-top: 25px;
    font-size: 1em;
    color: #444;
}

.contact-info a {
    color: #0078d4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}