.pagination {
    margin: 20px 0;
}

    .pagination a,
    .pagination span {
        padding: 8px 16px;
        margin: 0 4px;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #5a5957;
    }

        .pagination a:hover {
            background-color: #54544d;
        }

    .pagination .active {
        background-color: #7a7a70;
        color: white;
        border: 1px solid #575851;
    }

    .pagination .disabled {
        color: #aaa;
        pointer-events: none;
    }

/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    padding: 20px;
}
*/
.job-card {
    /*    background-color: #5a5957;*/
    border: solid #828278 1px;
        border-radius: 5px;
        box-shadow: 0 4px 12px #54544d;
    /*max-width: 600px;*/
    margin: 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

.job-header {
    padding: 0px 20px 20px 20px;
    border-bottom: solid #828278 1px;
}

.job-title {
/*    font-size: 1.5rem;*/
    font-weight: 600;
/*    color: #2d3748;*/
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #718096;
    font-size: 0.9rem;
}

.job-type {
/*    background-color: #e2f3ff;*/
/*    color: #3182ce;*/
    padding: 3px 8px;
    border-radius: 4px;
/*    font-size: 0.8rem;*/
/*    font-weight: 500;*/
    margin-right: 10px;
}

.job-posted {
    display: flex;
    align-items: center;
}

    .job-posted svg {
        margin-right: 5px;
    }

.job-body {
    padding: 5px;
}

.job-requirements {
    padding: 0px 20px 20px 20px;
    /*    margin-bottom: 20px;*/
}

    .job-requirements h3 {
        font-size: 1.1rem;
/*        color: #2d3748;*/
        margin-bottom: 10px;
    }

    .job-requirements ul {
        padding-left: 20px;
        margin: 0;
/*        color: #4a5568;*/
        line-height: 1.6;
    }

    .job-requirements li {
        margin-bottom: 8px;
    }

.job-btn-small {
    padding: 5px 10px;
    font-size: 12px;
    background-color: #7a7a70;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.job-btn-right {
    float: right;
}
.job-btn-left {
    float: left;
}

.job-apply {
    text-align: center;
    padding: 15px 20px;
    /*    background-color: #5a5957;*/
    border-top: solid #828278 1px;
}

.apply-btn {
    background-color: #7a7a70;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .apply-btn:hover {
/*        background-color: #38a169;*/
    }

.job-container {
    max-width: 800px;
    margin: 0 auto;
    /*    background: #f9f9f9;*/
    padding: 30px;
    border: solid #828278 1px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}



.company-name {
    color: #3498db;
    font-size: 1.2em;
    margin: 5px 0 15px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: small;
}

    .meta-item i {
        margin-right: 8px;
        color: #7f8c8d;
    }

.section-title {
/*    color: #2c3e50;*/
    margin: 25px 0 10px;
}

.job-description {
    white-space: pre-line;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
}

    .back-link:hover {
        text-decoration: underline;
    }

.tag {
    display: inline-block;
    background-color: #edf2f7;
    color: #4a5568;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tags-container {
    margin-top: 15px;
}

.job-form {
    /*    background-color: #f8f9fa;*/
    border: solid #828278 1px;
    border-radius: 10px;
    padding: 30px;
    /*    box-shadow: 0 0 15px rgba(0,0,0,0.1);*/
}

.form-header {
    border-bottom: solid #828278 1px;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.required-field::after {
    content: "*";
    color: red;
    margin-left: 4px;
}


.form-select {
    background-color: #828278;
    position: relative;
    width: 200px;
}

.form-select select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #718096;
    border-radius: 5px;
    background: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-arrow {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: #718096;
    height: 100%;
    width: 30px;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

    .custom-arrow::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-width: 6px 5px 0;
        border-style: solid;
        border-color: #555 transparent transparent;
    }
/**************************Job Application *******************************************************/

.application-container {
    max-width: 800px;
    margin: 0 auto;
    /*    background: #f9f9f9;*/
    border: solid #828278 1px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.application-form-group {
    margin-bottom: 20px;
}

.application-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.appl-input {
    height:30px;
}

.application-input[type="text"],
.application-input[type="email"],
.application-input[type="tel"],
.application-input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;

}

.application-textarea {
    min-height: 150px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: black;
}


.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}
.application-job-title {
/*    color: #2c3e50;*/
    font-size: x-large;
    margin: 0;
}
/*.btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

    .btn:hover {
        background: #2ecc71;
    }*/

.success-message {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/*.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
}

    .back-link:hover {
        text-decoration: underline;
    }*/
/**********************************************************************************************/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
/*    background-color: #f2f2f2;*/
    font-weight: bold;
}

tr:hover {
    background-color: #7a7a70;
}
/******************************Login**********************************/

/* Main Container Styles */
.login-container {
    
    max-width: 500px;
    margin: 5rem auto;
    padding: 2rem;
}

/* Jumbotron/Form Container */
.jumbotron.login {
    background-color: #505050;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: none;
}

/* Form Header */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .login-header h2 {
        color: #343a40;
        font-weight: 600;
    }

/* Form Elements */
.form-signin {
    margin-top: 1.5rem;
}

    .form-signin .form-group {
        margin-bottom: 1.5rem;
    }

    .form-signin .form-control {
        height: 45px;
        border-radius: 5px;
        padding: 0.75rem 1rem;
        border: 1px solid #ced4da;
        transition: all 0.3s;
    }

        .form-signin .form-control:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .form-signin label {
        font-weight: 500;
        color: #495057;
        margin-bottom: 0.5rem;
    }

/* Remember Me & Forgot Password */
.form-check-label {
    color: #495057;
}

.forgot-password {
    color: #6c757d;
    transition: color 0.2s;
}

    .forgot-password:hover {
        color: #0056b3;
        text-decoration: none;
    }

/* Buttons */
.btn-login {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

/* Divider */
.login-divider {
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

    .login-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #dee2e6;
        z-index: -1;
    }

    .login-divider span {
        background: white;
        padding: 0 1rem;
        color: #6c757d;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .login-container {
        margin: 2rem auto;
        padding: 1rem;
    }

    .jumbotron.login {
        padding: 1.5rem;
    }
}

/* Error/Success Messages */
.alert {
    border-radius: 5px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

/* Loading Spinner */
.spinner-border {
    vertical-align: middle;
    margin-right: 0.5rem;
}

/********************************************************************/