body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

/* Navbar */
.navbar {
    background-color: #4f46e5;
    color: white;
    padding: 12px 20px;
    position: sticky;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 12px;
    transition: opacity 0.2s;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

/* Page Heading */
main h1 {
    text-align: center;
    margin: 30px 0;
    color: black;
}
/* About Section matching homepage theme */
.about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}


.about p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 15px 0;
}


/* Job Cards */
.job-container {
    max-width: 900px;
    margin: auto;
    padding: 60px;
}
/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tbody tr:hover {
    background-color: #dfe6e9;
    cursor: pointer;
}
/* Table Button */
.clickable-row {
    cursor: pointer;
}

.clickable-row:hover {
    background-color: #f1f5f9;
}


/* Highlight selected row */
.selected {
    background-color: #74b9ff !important;
    color: #fff;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 50px;
}

body.dark footer {
    background: #1e1e1e;
}
