/* Root Variables for Colors */
:root {
    --primary-color: #4DAAE0;
    --secondary-color: #232946;
    --light-color: #fbfbfb;
    --dark-color: #0c112a;
    --grey-color: #ececec;
    --table-striping: #f9f9f9;
    --modal-bg: #0c112a;
    --modal-text: #fff;
    --button-bg: #1f1f1f;
    --highlight-color: #ff00ff;
    --light-grey: lightgrey;
}

/* General Styles */
.content-page {
    background: var(--light-color);
}

.main-section-bar {
    background-color: var(--grey-color);
    height: 50px;
}

.search-bar li {
    display: inline-block;
}

.search-bar {
    padding-top: 10px;
}

.search-container i {
    color: var(--modal-text);
}

.search-container button {
    float: right;
    padding: 6px 10px;
    margin-right: 16px;
    background: var(--primary-color);
    font-size: 11px;
    border: none;
    cursor: pointer;
}

/* File Select Area */
.file-select-area {
    border: dashed 6px lightgrey;
}

/* File Menu Button */
.file-menu li {
    display: inline-block;
}

.file-menu button {
    background: var(--primary-color) !important;
    color: var(--modal-text);
    padding: 4px 25px;
    border-radius: 5px;
    font-weight: 600;
}

/* Upload Button */
#upload {
    background-color: var(--primary-color);
    color: var(--modal-text);
    padding: 4px 20px;
    cursor: pointer;
}

/* File Input */
#upload-file {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

/* Center Area Link */
.center-area a {
    color: var(--highlight-color);
}

/* Table Styles */
tr:nth-child(even) {
    background-color: var(--table-striping);
}

.table-detail fa {
    font-size: 16px;
}

.table-detail thead {
    background-color: #f2f2f2;
}

/* Sidebar */
#sidebar-menu > ul > li > a {
    padding: 12px 35px !important;
}

/* Modal Styles */
.modal-header {
    background-color: var(--modal-bg) !important;
    color: var(--modal-text);
}

.modal-title {
    color: var(--modal-text);
}

.modal-footer button {
    background-color: var(--modal-bg) !important;
    color: var(--modal-text);
}

.modal-header button {
    color: var(--modal-text);
}

/* Menu Title */
.menu-title {
    padding: 10px 18px !important;
    font-size: 14px !important;
}

/* Navbar */
.navbar-custom {
    background-color: var(--dark-color) !important;
}

/* Button Styling */
.btn-login {
    background-color: #d4d8f0;
    color: #232946;
    border: none;
    font-weight: 700;
}

.btn-login:hover {
    background-color: #eebbc3;
}
.password-eye {
    cursor: pointer;
}

@media (max-width: 768px) {
    .card {
        margin: 0 auto;
    }

    .auth-logo img {
        width: 150px;
    }
}


.login-font-color{
    color: #ffffff;
}



.registration-font-color{
    color: #ffffff;
}



.authentication-bg {
    background-image: url('/static/assets/images/background-img/bg-pattern.png');
    background-size: cover; /* Ensures the image covers the background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 100vh; /* Optional: Makes the background cover the entire viewport height */
}

.authentication-registration-bg  {
    background-image: url('/static/assets/images/background-img/bg-pattern.png');
    background-size: cover; /* Ensures the image covers the background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    
}




.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--button-bg) !important;
}

/* Folders List */
.folders li {
    display: inline-block;
}

/* Image with Text */
.img-with-text {
    background-color: var(--light-grey);
}

/* Hide File Info */
#fileinfo {
    display: none;
}

.btn-custom-bg{
	background-color: #232946 !important;
}

.custom-bg{
	background-color: #232946 !important;
}

