body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.bigcontainer{
    width: 100%;
    height:100%;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
   
    padding-bottom: 20px;
    vertical-align: top;

}
.designp{
    background-color: rgb(210, 220, 227);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding:5px;
    margin:10px;
    border-radius: 20px;
    width:90%;
    font-size:12px;
}

.smalltxt{
    font-size:14px;
    text-align: center;
    background-color: rgb(193, 215, 154);
}
.containern {
   width:90%;
    max-width: 650px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-right:auto;
    margin-left:auto;
    margin-top:10px;
}

.applicationsdisp{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: #005bb5 1px solid;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 13px;
}

#gotoapplications{
    font-size: 13px;
}

#gotoaddajob{
    font-size: 13px;
}

.clear {
    padding:10px;
    width:100%;
}

.smallerr{
    font-size: 12px;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-right:auto;
    margin-left:auto;
    margin-top:20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headerr{
    padding:20px;
    text-align:center
}

.form-header h2 {
    margin: 0 0 20px;
}

form {
    width: 100%;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 20px;
    background: #0073e6;
    border: none;
    color: #fff;
    border-radius: 15px;
    cursor: pointer;
    font-size:18px;
}

button:hover {
    background: #005bb5;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form-footer a {
    color: #0073e6;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-spinner.active {
    display: block;
}


.spinner {
    display: none;
    margin-top: 10px;
    width: 40px;
    height: 40px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0073e6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right:auto;
    margin-left:auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#notice {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: smaller;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #0073aa;
    color: #fff;
}

.logo {
    font-size: 16px;
    padding: 0;
    word-spacing: -5px;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.hamburger {
    display: none;
    font-size: 14px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #0073aa;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

.show {
    left: 0;
}


.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size:10px;
    
}

.job-table th, .job-table td {
    border: 1px solid #ddd;
    padding: 2px;
    text-align: center;
}

.job-table th {
    background-color: #333;
    color: #fff;
}

.job-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.job-table tr:hover {
    background-color: #f1f1f1;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #0073aa;
    color: #fff;
    padding:5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border-radius: 15px;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.listingtext {
   font-size:10px; 
}


.response {
    margin-top: 10px;
    color: red;
}

.notice {
    margin-top: 10px;
}

input[type="checkbox"] {
    margin-right: 5px;
}
