.error{
  color:red;
}

.w3-border {
    border: 1px solid #ccc !important;
}

.w3-container, .w3-panel {
    padding: 1.01em 16px;
}

.w3-round-xlarge {
    border-radius: 16px;
}

.title {
  font-style: italic;
  font-size: large;
  font-weight: 500 !important;
  color: darkcyan;
}

.input-border {
    border: 1px solid #ccc !important;
    border-radius: 16px;
}

.swal-modal .swal-text {
    text-align: center;
}

.card {
    padding: 30px;
}

.input-container {             
    position: relative;             
    width: 100%;             
    max-width: 300px;         
}         

.license_input {             
    width: 100%;            
    padding: 10px;             
    padding-right: 40px;             
    box-sizing: border-box;         
}         

.toggle-password {             
    position: absolute;             
    top: 50%; 
    right: 10px; 
    transform: translateY(-50%); 
    cursor: pointer; 
    user-select: none; 
}

.theorem-loader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:url(/images/theorem-Loader-v1.gif) no-repeat #FFFFFF 50%;
    -moz-background-size:64px 64px;
    -o-background-size:64px 64px;
    -webkit-background-size:64px 64px;
    background-size:64px 64px;
    z-index: 99998;
    width:100%;
    height:100%;
    opacity: 0.8;
}
body {
    background-color: #f5f6fa;
}

.sidebar {
    align-items: center;
    text-wrap: nowrap;
    font-size: 9px;
    width: 100px;
    background-color: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    max-height: 100vh;
    height: -webkit-fill-available;
    padding: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
        }
.sidebar::-webkit-scrollbar {
    display: none; /* Hide the scrollbar */
}
.sidebar-logo {
    width: 40px;
    height: auto;
    margin-bottom: 20px;
}

.sidebar a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    width: 100%;
    position: relative;
}

.sidebar a i {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.sidebar a:hover,
.sidebar a.active {
    background-color: #1d2d3a;
    color: #217aff;
    border-left: 4px solid #217aff;
}

.main-content {
    padding: 20px;
    margin-left: 100px;
    width: -webkit-fill-available;
}

.btn-primary {
    background-color: #217aff;
    border-radius: 18px;
}

.btn-primary:hover {
    background-color: #1d6adf;
}

.btn-secondary {
    border-radius: 18px !important;
}

.filter-section {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.filter-section select {
    width: 150px;
}

.start-item-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.start-item-section .info-card {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: white;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.start-item-section .info-card button {
    width: 150px;
}

.table-section {
    margin-top: 40px;
}

.table th,
.table td {
    vertical-align: middle;
}

.table {
    margin-top: 20px;
}

/* Custom style for underlining active tab */
.nav-tabs .nav-link.active {
    border-bottom: 3px solid #217aff;
    font-weight: bold;
}

.nav-tabs .nav-link {
    color: #000;
    padding: 10px;
}

.nav-tabs .nav-link:hover {
    color: #217aff;
}

/* Styles for the search input section */
.search-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.search-section .form-control {
    width: 200px;
    margin-right: 10px;
    border-radius: 12px;
    background-color: lightgray;
}

/* Dropdown specific styling */
.dropdown-menus {
    background-color: #1d2d3a;
    width: 150px; /* Set dropdown width */
    left: -30px; /* Position dropdown inside sidebar */
    margin-bottom: -12px !important;
}

.dropdown-menus a {
    color: white;
}

.dropdown-menus a:hover {
    background-color: #2c3e50;
}

/* Hover dropdown for the user icon */
.user-dropdown:hover .dropdown-menus {
    display: block;
}

/* Sidebar icon hover dropdown fix */
.user-dropdown .dropdown-menus {
    bottom: 70px;
    left: 20px;
    padding: 0px !important;
    display: none;
    position: absolute;
    transform: translate(-50%, 10px);
    margin-top: 0;
    font-size: 9px;
}

.sidebar .user-dropdown {
    position: relative;
}

.sidebar .user-dropdown i {
    font-size: 24px;
}

