/* 
*
* Project Font's Called Start
*
*/
@font-face {
  font-family: Assistant-Regular;
  src: url(../fonts/Assistant-Regular.ttf);
}
@font-face {
  font-family: Assistant-Medium;
  src: url(../fonts/Assistant-Medium.ttf);
}
@font-face {
  font-family: Assistant-Bold;
  src: url(../fonts/Assistant-Bold.ttf);
}
@font-face {
  font-family: LilitaOne-Regular;
  src: url(../fonts/LilitaOne-Regular.ttf);
}
.sys-font-medium-bold{
  font-family: Assistant-Medium;
}
.sys-font-bold{
  font-family: Assistant-Bold;
}
/* 
*
* End
*
*/


/* 
*
* System Typography Css Start
*
*/
.container {
    max-width: 1000px;
}

/* 
*
* End
*
*/




/* 
*
* System Navbar Css Start
*
*/
.navbar{
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.navbar-brand{
    font-size: 25px;
}
.navbar-expand-lg .navbar-nav .nav-item{
    padding-left: 15px;

}
.nav-link {
    font-size: 1rem;
    transition: color 0.3s ease;
    
}

.nav-link:hover {
    color: #000;
}
.nav-link i{
    width: 25px;
    text-align: center;
}
.dropdown-menu {
    border-radius: 10px;
    padding: 0.5rem;
    border: none!important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}

.dropdown-item i {
    margin-right: 0.5rem;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: #000;
    border-radius: 10px;
}

.fw-semibold {
    font-weight: 600;
}

/*Responsive*/
@media (max-width: 996px){
    /*Toggler*/
    .navbar-toggler {
        border: none !important;
        outline: none !important;
        border-radius: 0px !important;
    }
    .navbar-toggler span{
        color: #50414A!important;
    }
    
    /*Off Canvas*/
    .offcanvas-header{
        background: #EEEEEE;
    }
    .offcanvas-title{
        
        
    }
    /*Navbar Responsive*/
    .offcanvas-body{
        padding: 30px;
    }
    .navbar-expand-lg .navbar-nav .nav-item{
        padding-left: 0px;
    }
    .nav-link{
        color: #222!important;
    }

}
/*
*
* End
*
*/


/*
*
* System Path Start
*
*/
.System-target {
    font-family: Arial, sans-serif;
}

.System-target p {
    font-size: 16px;
    margin: 0;
    padding: 5px 0;
}

.System-target p a {
    color: #777;
    text-decoration: none;
}

.System-target p i {
    margin-right: 5px;
}

.System-target p span {
    margin: 0 5px;
    color: #ddd;
}

.System-target p a:hover {
    color: #333;
}
/*
*
* End
*
*/


/* 
*
* System Noticeboard Section Css Start
*
*/
.notice-container {
    overflow: hidden; /* Hide any content outside of the container */
    position: relative;
    width: 100%; /* Ensure the container spans the full width */
    height: 30px; /* Set a fixed height for the notice box */
}

.scrolling-notice {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 100%; /* Start the text off-screen on the right */
    line-height: 30px; /* Vertically center the text inside the container */
}

/* Optional: Style for the icon and text */
.scrolling-notice i {
    color: #fff; /* Icon color */
}

.scrolling-notice span{
    font-family: Assistant-Bold;
    font-size: 13px;
}
/* 
*
* End
*
*/



/* 
*
* System IP Card Css Start
*
*/
.ip-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: url("../img/g-tools-ip-checker-background.avif") no-repeat center center / cover;
}

.ip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.ip-card .card-body {
    position: relative;
    z-index: 2;
}

.ip-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.ip-address {
    font-size: 1.75rem;
    letter-spacing: 1px;
    border-radius: 100px;
    padding: 0.6rem 1.5rem;
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    display: inline-block;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.reload-btn {
    transition: 0.3s ease;
}

.reload-btn:hover {
    background-color: #0d6efd;
    color: #fff;
}
/* 
*
* End
*
*/



/* 
*
* App Others Css Start
*
*/
.icon-width{
    width: 20px;
    
}

/* 
*
* End
*
*/



/* 
*
* Custom Responsive Table Design Css Start
*
*/
.custom-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    background-color: #fff;
}

/* Custom Table Styles */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    
}

.custom-table th, .custom-table td {
    padding: 5px;
    text-align: left;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.custom-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #333;
}

.custom-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.custom-table tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-table th, .custom-table td {
        padding: 8px;
    }
}
/* 
*
* End
*
*/



















