:root{
    --primary-color:#f04461;
    --secondary-color:rgb(223, 223, 223);
}
body{
      font-family: "Poppins", sans-serif;
}
.top-bar{
    height: 70px;
    background-color: var(--primary-color);
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 10;
}
.top-bar button{
    background-color: transparent !important;
    border: none;
    padding: 0px;
    color: white;
}
.top-bar button:hover{
    color: rgba(255, 255, 255, 0.789);
}
.menu{
    display: flex;
    align-items: center;
}
.menu li{
    display: inline-block;
    margin-right: 15px;
}
.menu li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
}
.sidebar {
    height: 95vh;
    width: 350px;
    overflow-y: auto;
    background-color: rgb(255, 255, 255);
    position: fixed;
    left: 0px;
    top: 70px;
    padding: 30px;
    transition: left 0.3s ease;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.activesidebar {
    left: -350px;
}
.content {
    background-color:#f6f6f6;
    min-height: 95vh;
    margin-left: 0;
    margin-top: 70px;
    padding: 5%;
    padding-top: 100px;
    transition: margin-left 0.3s ease;
    position: relative;
}

.activecontent {
    margin-left: 350px;
}

.sidebaricon{
   color: var(--primary-color) !important;
   margin-right: 5px;
}
.sidebar-link {
    color: #1f2937 !important;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
        border-bottom: 1px solid rgb(237, 237, 237);
        margin-bottom: 15px;
    transition: all 0.25s ease;
}
.sidebar-link:hover {
    background: #f3f4f6;
    color: #111827;
}

.sidebar-link[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}
.sub-menu {
    padding-left: 15px;
}

.sub-link {
    color: #282828;
    padding: 8px 15px;
    font-size: 15px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}
.sub-link:hover {
    background: #f9fafb;
    color: #111827;
    padding-left: 15px;
}
.info-bar{
   height: 60px;
   background-color: white;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-left: 30px;
   padding-right: 30px;
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.form-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.form-wrapper label {
    font-weight: 500;
    margin-bottom: 10px;
}
.form-wrapper input,
.form-wrapper select {
    height: 50px;
    margin-bottom: 15px !important; 
}
.tag {
    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}
.tag button {
    border: 0;
    background: none;
    margin-left: 8px;
    font-weight: 700;
    cursor: pointer;
}
.tag-input-wrapper {
    border: 1px solid #ced4da;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 45px;
    background: #fff;
}
.tag-input-wrapper input {
    border: 0;
    outline: none;
    flex: 1;
    min-width: 120px;
}
.btn-form-submit{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: white;
    padding: 18px 25px;
    font-weight: 600;
}
.btn-form-submit:hover{
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    padding: 18px 25px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #d7d7d7;
    cursor: pointer;   
}
.table-image{
    height: 80px;
    width: 100px;
    border: 1px solid black;
}
.table-custom-head > tr > th {
    background-color: var(--primary-color);
    padding: 18px;
    color: white;
    border: none;
}
.table-responsive > tr > td {
    padding: 15px;
}
.table-responsive{
    overflow-x: auto;
}
.search-wrap{
    border: 1px solid var(--primary-color);
    background-color: transparent;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
}

.search-wrap svg{
    color: var(--primary-color);
}

.search-wrap input{
    margin: 0px !important;
    border: none;
    font-size: 18px;
}
.search-wrap input:focus{
    box-shadow: none;
}
.info-container{
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(245, 245, 245);
    border: 1px solid gainsboro;
}
.btn-mini{
    border: none;
    padding: 0px !important;
    background-color: transparent;
}
.link-edit{
    text-decoration: none;
    color: var(--primary-color);
}
.link-edit:hover{
    text-decoration: underline;
}
.primary-col{
    color: var(--primary-color) !important;
}