body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.signup {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.signup h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.signup h2 {
    color: #34495e;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    color: white;
}

.form-actions button[type="submit"] {
    background-color: #3498db;
}

.form-actions button[type="reset"] {
    background-color: #e74c3c;
}

.signup p {
    font-size: 0.9em;
    margin-top: 20px;
    text-align: center;
}

.signup p a {
    color: #3498db;
    text-decoration: none;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-content h3 {
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin-bottom: 5px;
}

.footer-content ul li a {
    color: white;
    text-decoration: none;
}

.social-icons a img {
    width: 30px;
    margin-right: 10px;
}

.copyright {
    margin-top: 20px;
}
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}
/* Jobs Section */
.jobs {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.jobs h1 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Back to Home Button */
.jobs .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s, color 0.3s;
}

.jobs .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Table Styling */
.table-responsive .table {
            min-width: 1000px; /* Adjust this value to make the table wider */
        }

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #343a40;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table td a.btn {
    white-space: nowrap;
}

/* Apply Button */
.table .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s, color 0.3s;
}

.table .btn-success:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .table thead {
        display: none;
    }
    
    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
    }
    
    .table tr {
        margin-bottom: 15px;
    }
    
    .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    
    .table td a.btn {
        display: block;
        margin-top: 10px;
    }
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff; /* Bootstrap primary color */
}

.nav-link {
    color: #333;
}

.nav-link:hover {
    color: #0056b3;
}

/* Main Content Styling */
main h1 {
    color: #333;
    font-size: 2.5rem;
}

main p {
    font-size: 1.1rem;
    color: #6c757d; /* Bootstrap gray-600 */
}

/* Card Styling for Jobs */
.card {
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #212529;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-body {
    padding: 1.25rem;
}

.card-body a.btn {
    margin-top: 1rem;
}

/* Job Description Text */
.card-body p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}
.existing-user .button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.existing-user .button:hover {
    background-color: #0056b3;
}
.banner-slider {
        width: 100%;
        overflow: hidden;
    }
    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .slide {
        flex: 0 0 100%;
        height: 300px; /* Adjust height as needed */
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    .slide:nth-child(1) { background-image: url('image(1).jpg'); }
    .slide:nth-child(2) { background-image: url('image(2).jpg'); }
    .slide:nth-child(3) { background-image: url('image(3).jpg'); }

    /* Ensure the active slide is fully visible */
    .slides .slide.active {
        opacity: 1;
    }