@font-face {
    font-family: 'montserrat';
    src: url('../fonts/Montserrat.ttf');
    font-style: normal;
    font-variant: normal;
}
@font-face {
    font-family: 'bootstrap-icons';
    src: url('../fonts/bootstrap-icons.woff');
    font-style: normal;
    font-variant: normal;
}

*{
    font-family: 'montserrat';
    font-size: 1rem;
    font-weight: 400;
}
body{
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
.top-bar
{
    background-image: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
}

.top-bar a,.top-bar a:link,.top-bar a:visited{
    color:#fff;
    text-decoration: none;
    font-weight: 600;
    transition:color 0.3s ease;
}
.top-bar a:hover{
    color:#000;
}

.navigation{
    height: 100%;
    background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
}

.navigation > ul {
    margin-left:5px;
    padding:0px;
    list-style: none;
}
.navigation > ul >li > ul {
    margin-left:15px;
    padding:0px;
    list-style: none;
}
.navigation ul li a:link,.navigation ul li a,.navigation ul li a:visited{
    color:#fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.navigation ul li a:hover{
    color:#ff7eb3;
}

.content{
    background-color: #fff;
    border-radius:6px;
    min-height: 85vh;
    
}

.navigation ul li a{
    border-bottom:1px solid #fff;
    width: 100%;
    display: inline-block;
    padding: 5px;
}
.navigation ul li.parent{
    position: relative;
}

.navigation ul li.parent::after{
    width: 30px;
    height: 30px;
    font-family: 'bootstrap-icons';
    content: '\F231';
    color: #fff;
    position: absolute;
    right: 4px;
    top: 6px;
    transition: color 0.3s ease;
}
.navigation ul li.parent:hover::after{
    color: #ff7eb3;
}
.navigation ul li.parent.active::after{
    content: '\F229';
}
.navigation ul li.parent > ul{
    display: none;
}
.navigation ul li.parent.active > ul{
    display:block;
}


table{
    width: 100%;
    margin-top: 20px;
}
table th{
    font-weight: 600;
}
table thead th{
    background-color: #e6e6e6 !important;
    
}


.btn.btn-primary{
    background-color: #ff758c;
    color:#fff;
    border: none;
    transition:background-color 0.2s ease;
}

.btn.btn-primary:hover{
    background-color: #d4566b;
}
.btn.btn-add{
    display: flex;
    gap: 7px;
    align-items: center;
}
.btn.btn-add::before{
    font-family: 'bootstrap-icons';
    content: '\F4FE';
    display: inline-block;
}