body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    padding: 0px;
    margin: 0px;
}
.container {
    background: #fff;
    max-width: 1000px;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #aaa;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #1f53a7;
    color: white;
}
input[type="datetime-local"], input[type="text"] {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
}
.buttons {
    margin-bottom: 15px;
}
.buttons button, select {
    margin: 3px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
}
.buttons input {
    padding: 8px;
    width: 200px;
}
.footer {
    text-align: center;
    font-size: 12px;
    color: #ffff;
    padding: 20px;
    background-color: #1f53a7;
}

.nav-img img{
    padding: 0px;
    margin: 0px;
}

.img-div img{
    width: 100% !important;
}

.navbar-buttons {
    background: #1f53a7;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: Arial, sans-serif;
    /* text-transform: uppercase; */
}

.navbar-buttons button,
.navbar-buttons select {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.navbar-buttons button:hover,
.navbar-buttons select:hover {
    background-color: #FF671F;
    color: #fff;
}

.navbar-buttons select {
    appearance: none;
    padding-right: 25px;
}

.navbar-buttons input[type="text"] {
    padding: 6px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.back-ground
 {
    height: 100%;
    min-height: 100vh;
    overflow: auto;
    margin-right: 0px;
    width: 100%;
    padding: inherit;
    background-image: url(./img/background-1.jpg);
}

.back-ground {
    position: relative;
    background-image: url(./img/background-1.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.back-ground::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.84); /* black overlay with 50% opacity */
    z-index: 1;
}

.back-ground > * {
    position: relative;
    z-index: 2;
}

.help-points {
    position: relative;                  /* Needed for absolute overlay */
    background-image: url(./img/background-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;                        /* Example: white text over dark overlay */
    overflow: hidden;
}

.help-points::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);   /* black overlay with 40% opacity */
    z-index: 0;                          /* behind the content */
}

.help-points > * {
    position: relative;
    z-index: 1;                          /* content stays above overlay */
}

.padding-help{
    padding: 100px;
    color: #fff;
    font-size: 18px;
}