body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin:0;
}   
.back-container{
    padding:20px;
    
}
nav form button:hover {
  background-color: red;
}
.back-btn{
   
    color:black ;
    border:none;
    padding:5px 9px;
    font-size:14px;
    cursor:pointer;
    border-radius:4px;
    float: left;
    
}

.back-btn:hover{
    background:red;
    
}
.header span{
    font-size: small;
    font-weight: bolder;
    font-family: monospace;
    text-align: right;
}
.header h1{
    font-size: 50px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    text-align: center;
    
}

.highlight-red{
    background-color: red; /* Light red */
    color: white;
    text-align: center;
    
}

.highlight-green {
    background-color:green; /* Light green */
    color: white;
    text-align: center;
    
}
.highlight-white{
    color: black;
    background-color: white;
    text-align: center;
    
}
.highlight-yellow {
    background-color: yellow; /* Light yellow */
    color: black;
    text-align: center;
    
    border-style: dashed;
    
}
.highlight-nores{
    background-color: black;
    color: white;
    text-align: center;
    
}

.hightlight-orange{
    background-color: black;
    color: orange;
    text-align: center;
    
}
.hightlight-cyan{
    background-color: black;
    color: cyan;
    text-align: center;
    
}
.highlight-grey{
    background-color: grey;
    color: white;
    text-align: center;

}
thead{
    background-color: #0073aa;

}
tr{
    border: #0073aa;
}
table {
    width: 100%;
    height: max-content;
    border-collapse: collapse;
    
    
}
table th, table td {
    
}
table th a {
    text-decoration: none;
    color: inherit;
}
table th a:hover {
    text-decoration: underline;
}

.pagination a {
    padding: 5px 10px;
    margin: 0 2px;
    text-decoration: none;
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}
.pagination a.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}
.filter-form {
    margin-bottom: 20px;
    
}

.filter-input {
    width: 100%;
    box-sizing: border-box;
}
.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination .button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background-color: black;
    color: white;
    text-decoration: none;
   
    border: none;
    font-size: 14px;
}

.pagination .button:hover {
    background-color: red;
    color:white;
}
.logout-button{
    padding: 5px 10px;
    
    text-decoration: none;
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
    float: right;
    
}
.logout-button :hover {
    background-color: red;
    color:white;
}


.card{
width:300px;
margin:auto;
background:black;
padding:30px;
border-radius:10px;
position: absolute;
  top:40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input{
width:100%;
padding:10px;
margin:10px 0;
border:none;
border-radius:5px;
}



.btn{
display:block;
margin:10px;
padding:10px;
background:#22c55e;
color:white;
text-decoration:none;
border-radius:5px;
}

.error{
color:#ef4444;
}

.success{
color:#22c55e;
}


input,select{
padding:8px;
margin:10px 0;
width:100%;
border-radius:5px;
border:none;
}

.login-box{
width:300px;
margin:auto;
background:#1e293b;
padding:30px;
border-radius:10px;
}

.form-box{
width:350px;
background:#1e293b;
padding:30px;
border-radius:10px;
}


/* Blur background */
.blurred {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

/* Overlay full screen */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* Modal box */
.overlay-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.overlay-box h2 {
    margin-bottom: 10px;
}

.overlay-box button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.overlay-box button:hover {
    background: #0056b3;
}


		 .logo img{
height:60px;
}

.logo{
display:inline-flex;
align-items:center;
gap:10px;
float:center;
}

.title {
    text-align: center;
}

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:white;
font-weight:bold;
padding:10px 18px;
border-radius:6px;
transition:all 0.3s ease;
}
.menu-toggle{
display:none;
font-size:28px;
background:none;
border:none;
color:white;
cursor:pointer;
}
#navMenu button{
    
    font-size: 15px;
    letter-spacing: 3.2px;
   
}

/* Mobile layout */
@media (max-width:768px){

nav{
display:none;
flex-direction:column;
background:black;
position:absolute;
top:120px;
left:0;
width:100%;
padding:10px;
}

nav form{
width:100%;
	font-weight: bold;
}

nav button{
width:100%;
}

.menu-toggle{
display:block;
}

nav.active{
display:flex;
}

}


		.site-footer{
    position: relative;
    
    margin-top:50px;
    width: 100%;
    background: #050505;
    color: #ccc;
}

/* top footer area */

.footer-content{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:40px;
}

.footer-col h3{
color:#ff2b2b;
margin-bottom:15px;
font-size:18px;
}

.footer-col p{
font-size:13px;
line-height:1.6;
margin-bottom:12px;
color:#aaa;
}

.footer-col ul{
padding-left:18px;
}

.footer-col li{
margin-bottom:8px;
font-size:13px;
color:#aaa;
}

/* logo column */

.logo-col{
text-align:center;
}

.logo-col img{
width:120px;
margin-top:15px;
}

/* bottom bar */

.footer-bottom{
border-top:1px solid #222;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:13px;
max-width:1200px;
margin:auto;
}

.footer-powered{
color:#ff2b2b;
}