/* Importing Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    border-color: transparent;
    margin:0;
    padding:0;
    background-color: #0056b3;
    padding-top: 0px;       
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 110px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(17px);
    --webkit-backdrop-filter: blur(17px);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

.sidebar:hover {
    width: 260px;
}

.sidebar .logo {
    color: #000;
    display: flex;
    align-items: center;
    padding: 25px 10px 15px;
}

.logo img {
    width: 43px;
    border-radius: 50%;
}

.logo h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-left: 15px;
    display: none;
}

.sidebar:hover .logo h2 {
    display: block;
}

.sidebar .links {
    list-style: none;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    height: calc(100% - 140px);
}

.sidebar .links::-webkit-scrollbar {
    display: none;
}

.links li {
    display: flex;
    border-radius: 4px;
    align-items: center;
}

.links li:hover {
    cursor: pointer;
    background: #fff;
}

.links h4 {
    color: #222;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
}

.sidebar:hover .links h4 {
    display: block;
}

.links hr {
    margin: 10px 8px;
    border: 1px solid #4c4c4c;
}

.sidebar:hover .links hr {
    border-color: transparent;
}

.links li span {
    padding: 12px 10px;
}

.links li a {
    padding: 10px;
    color: #000;
    display: none;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.sidebar:hover .links li a {
    display: block;
}

.links .logout-link {
    margin-top: 20px;
}
/* Full page background video */
#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}
nav{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height: 50px;
    padding:10px 90px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.6);
    border-bottom:1px solid #fff;
}
nav .logo{
    padding:5px 20px;
    height:30px;
    float:left;
    font-size:18px;
    font-weight: bold;
    text-transform: uppercase;
    color:#fff;
}
nav ul{
    list-style:none;
    float:right;
    margin:0;
    padding: 5px 20px;
    display:flex;
}

nav ul li a{
    line-height: 35px;
    color:#eba0ce;
    padding: 5px 20px;
    text-decoration: none;
    font-size:14px;
    font-weight:bold;
    text-transform: uppercase;
}
nav ul li a:hover{
    background: rgba(224, 126, 126, 0.7);
    border-radius: 6px;
}
section{
    width:100%;
    height:100vh;
    background-size: cover;
    background-position:center ;
}
#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}


.nav-link {
    font-weight: 500;
    color: #333;
    padding: 5px 20px;
}

.nav-link .fa {
    margin-right: 4px;
}

.nav-link.active {
    color: #007bff;
}

.nav-link:hover {
    color: #0056b3;
}

.login-form {
    margin-top: 100px;
  }
   
  /* Center the progress bar in the middle of the screen */
#progress-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 20px;
    background: #f3f3f3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 9999;
}

#progress-bar {
    height: 100%;
    width: 0;
    background: #4caf50;
    border-radius: 10px;
    transition: width 0.4s ease;
}

#content {
    margin: 20px;
}

.table thead th {
    background-color: #007bff;
    color: #ffffff;
}

/* Table header styling */
th {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
       
}

/* Table data cell styling */
td {
    padding: 5px; /* Adjust padding to reduce row height */
    border: 1px solid #ddd;
}

/* Table row height adjustment */
tr {
    height: 5px; /* Adjust height to reduce row height */
}

/* Optional: Add some padding to the table for better appearance */
.container {
    padding: 20px;
}

/* Small button styles */
.table-button {
    padding: 2px 5px;
    line-height: 1;
    font-size: 15px;
    margin: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

/* th, td {
    padding: 10px;
    text-align: left;
} */

/* th {
    background-color: #f2f2f2;
} */

.top-bar {
    height: 100px;
    background-color: #0063cc;
    margin-left: 10px;
    width: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

#clientLogo{
    display: flex;
    gap: 24px;
    align-items: center;
}

#clientLogo > h1 {
    color: white;
}