@font-face {
    font-family: 'YekanBakhFaNum';
    src: url('../../assets/YekanBakhFaNum-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
  }

  body {
	font-family: 'YekanBakhFaNum', sans-serif;
	direction: rtl;
	font-size: 12pt;
	padding-left: 15px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: auto;
}

/* Hide scrollbars for all elements */
* {
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

/* Hide scrollbars for WebKit browsers (Chrome, Safari) */
*::-webkit-scrollbar {
    display: none;
}

button {
    -webkit-appearance: none; /* Remove default iOS styles */
    appearance: none; /* For cross-browser support */
    color: inherit; /* Use the inherited text color */
    background-color: inherit; /* Ensure background color doesn't change */
    border: none; /* Remove any default borders */
  }

/* Styles for input fields */
.number-input {
    border: none; /* Remove border */
    border-radius: 36px; /* Rounded corners */
    padding-left: 20px;
    padding-right: 20px; /* Add some padding */
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12pt; /* Font size */
    width: 50%; /* Change width to 68% of the parent container */
    max-width: 68vw; /* Limit maximum width to 68vw */
    text-align: left; /* Align text to the left */
    font-family: 'YekanBakhFaNum', sans-serif;
    font-weight: bold;
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease; /* Smooth transition for glow effect */
}

/* Add white glow effect on focus */
.number-input:focus {
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8); /* White glow */
}

/* Manager input styles */
.manager-item .number-input {
    background-color: #747474; /* Background color for managers */
    color: #a7a7a7; /* Text color for better contrast */
}

/* User input styles */
.user-item .number-input {
    background-color: #47dfff; /* Background color for users */
    color: #32a6be; /* Text color for better contrast */
}

/* Styles for checkboxes */
.custom-checkbox,
.contact-checkbox,
.trigger-checkbox {
    margin-right: 5px; /* Space between checkbox and label */
}

/* Round checkboxes */
.custom-checkbox,
.contact-checkbox,
.trigger-checkbox {
    -webkit-appearance: none; /* Remove default checkbox appearance */
    -moz-appearance: none; /* Remove default checkbox appearance */
    appearance: none; /* Remove default checkbox appearance */
    width: 20px; /* Width of the checkbox */
    height: 20px; /* Height of the checkbox */
    border-radius: 50%; /* Round shape */
    background-color: #9c9c9c; /* Background color for checkboxes */
    cursor: pointer; /* Change cursor on hover */
    display: inline-block; /* Ensure inline display */
    position: relative; /* Position relative for pseudo-elements */
}

/* Checkmark styling for custom checkboxes */
.custom-checkbox:checked,
.contact-checkbox:checked,
.trigger-checkbox:checked {
    background-image: url('../../assets/checked.svg'); /* Use your checked image */
    background-size: contain; /* Resize background image */
    background-repeat: no-repeat; /* Prevent background image from repeating */
    background-position: center; /* Center the image */
}

/* Input container styling */
.input-container {
    display: flex;
    align-items: center; /* Center the label and input vertically */
    justify-content: space-between; /* Space out the label and input */
    margin-bottom: 5px; /* Space between input and checkboxes */
}

/* Checkbox container styling for horizontal centering */
.checkbox-container {
    display: flex;
    align-items: center; /* Align checkboxes and labels vertically */
    justify-content: center; /* Center checkboxes and labels horizontally */
    margin-top: 5px; /* Space above the checkboxes */
}

/* Style for labels */
.label {
    flex: 1; /* Allow label to take remaining space */
    text-align: right; /* Align label text to the right */
    margin-left: 10px; /* Add space between label and input */
    white-space: nowrap; /* Prevent label text from wrapping */
}

/* Style for manager and user labels */
.manager-item label,
.user-item label {
    margin-right: 5px;
    color: black; /* Set text color to black */
    font-weight: bold; /* Make the font bold */
}

/* Style for labels in checkbox container */
.checkbox-container label {
    margin-right: 5px; /* Add some space to the right of labels */
    white-space: nowrap; /* Prevent label text from wrapping */
    color: rgb(156, 156, 156); /* Set text color to rgb(156, 156, 156) */
    font-weight: bold; /* Make the font bold */
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 5px;
}

/* Disable zooming */
html, body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Add background image to manager-item */
.manager-item {
    position: relative; /* Ensure the container is relative for absolute positioning */
    background-image: url('../../assets/side-kick.svg'); /* Add the side-kick image */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-position: right center; /* Align the image to the right center */
    background-size: auto 100%; /* Scale the image to match the height of the container */
    padding-right: 10px; /* Add some padding to prevent content overlap with the image */
}

/* Add background image to user-item */
.user-item {
    position: relative; /* Ensure the container is relative for absolute positioning */
    background-image: url('../../assets/side-kick.svg'); /* Add the side-kick image */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-position: right center; /* Align the image to the right center */
    background-size: auto 100%; /* Scale the image to match the height of the container */
    padding-right: 10px; /* Add some padding to prevent content overlap with the image */
}

.button-container {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    font-family: 'YekanBakhFaNum', sans-serif;
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin-top: 15px;
    height: 50px;
    color: whitesmoke;
    background-color: #999999;
    border-radius: 50px;
    overflow: hidden;
    height: 45px;
    border: aliceblue;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}