@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #D83636;
    --secondary-color: #000000;
    --background-color: #f8f9fa;
    --text-color: #000;
    --border-radius: 10px;
    --font-family: "Inter", serif;
    --transition: 0.3s ease;
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.5;
    font-weight: 400;
    font-style: normal;
}

.jost-font {
    font-family: "Jost", serif;
}

.poppins-font {
    font-family: "Poppins", serif;
}

.lexend-font {
    font-family: "Lexend", serif;
}

.inter-font {
    font-family: "Inter", serif;
}

hr {
    border-color: #ccc;
}

.fs-sm {
    font-size: 14px;
}

.h1, .h2, .h3, h1, h2, h3 {
    font-family: "Poppins", serif;
}

table {
    font-family: "Poppins", serif;
}

table th {
    font-weight: normal;
}

a.active {
    color: var(--primary-color);
}

.btn-outline-danger {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-size: 17px;
}

.btn-outline-danger:hover {
    color: #fff !important;
}

.btn-danger {
    background: linear-gradient(to right, #a80403, #f88383) !important;
    border-color: #fff;
    font-size: 17px;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.qty-input {
    width: 60px;
    border-color: #a80403;
    text-align: center;
    height: 30px;
}

/* Increase Checkbox Size and Change Color */
.custom-checkbox {
    width: 2rem;
    height: 1.2rem;
    background-color: #ddd;
    border-radius: 20px;
    position: relative;
    border: 1px solid #ccc;
    transition: background-color 0.3s ease;
}

/* Checkbox Color When Checked */
.custom-checkbox:checked {
    background-color: #D83636;
    border-color: #D83636;
}

/* Toggle Button Inside the Switch */
.custom-checkbox::before {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 50%;
    top: 0.1rem;
    left: 0.1rem;
    transition: transform 0.3s ease;
}

/* Move Toggle Button When Checked */
.custom-checkbox:checked::before {
    transform: translateX(0.8rem);
}

.bdr-left {
    border-left: 2px solid #D83636;
    padding-left: 10px;
}

.bdr-left-clr {
    border-left: 2px solid #d9d9d9;
    padding-left: 10px;
}

h5.sub-title {
    font-family: "Jost", serif;
}

.btn {
    font-family: "Jost", serif;
}

/* Search Input */


.btn-srh {
    background: transparent;
    border: none;
    box-shadow: none;
}

.search-input .bi-search {
    font-size: 1.2rem;
}

.input-group.search-input {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.input-group.search-input input {
    border: none;
    box-shadow: none;
}

.activity-p {
    font-size: 14px;
    font-weight: 300;
}

.user-icon {
    width: 50px;
    height: 50px;
    background-color: #d9d9d9;
    border-radius: 50%;
    margin-right: 10px;
}

.user-active {
    border: 1px solid #D83636;
}

.mu-edit {
    background-color: #fbeded;
}