.help-block {
    color: red;
    font-size: small;
}



/* Hide the input checkbox to use the label for custom styling */
.form-toggle .form-check-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

/* Style for the label that contains the FontAwesome icons */
.toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #ccc;
    border-radius: 4px;
    font-size: 18px;
    color: currentColor;
    padding: 0;
    transition: background-color 1s ease, color 1s ease;
    cursor: pointer;
}

/* Add focus styling for accessibility */
.form-check-input:focus+.toggle-label {
    /* box-shadow: none; */
    border: 1px solid #00baff;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* Unchecked state - Light icon with dark background */
.form-check-input:not(:checked)+.toggle-label {
    background-color: lightgrey;
    /* Lighter yellow */
    color: #fff !important;
}

/* Checked state - Dark icon with light background */
.form-check-input:checked.dg-toggle+.toggle-label {
    background-color: #FFC107;
    /* Dark yellow */
    color: #000;
    border: 1px dotted #fff;
}

/* Checked state - Dark icon with light background */
.form-check-input:checked.pallet-toggle+.toggle-label {
    background-color: #2196F3;
    color: #fff;
    border: 1px dotted #fff;

}

/* Checked state - Dark icon with light background */
.form-check-input:checked.save-toggle+.toggle-label {
    background-color: #3bb459;
    color: #fff;
    border: 1px dotted #fff;

}

/* Checked state - Dark icon with light background */
.form-check-input:checked.manual-handle-toggle+.toggle-label {
    background-color: purple;
    color: #fff;
    border: 1px dotted #fff;

}

input[type="number"] {
    /* Hide arrows in most browsers */
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;

    /* Optional: Remove margin and padding to align */
    margin: 0;
}

/* Remove arrows in Internet Explorer 10+ */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tooltip-inner {
    max-width: 400px;
    /* Adjust width as needed */
    text-align: left;
    /* Align text properly */
    font-size: 0.9rem;
    /* Adjust font size */
}

.warning {
    /* background:red; */
    background: #ff0000ba;
    color: white;
    font-size: 14px;
    font-weight: 900;
}



/* General readonly inputs (except Flatpickr) */
.form-control[readonly]:not(.flatpickr-input), 
.form-control[disabled]:not(.flatpickr-input) {
    background-color: #f7f7f7;
    /* Light gray background */
    color: #6c757d;
    /* Muted text color */
    border: 1px solid #fff;
    font-weight: 600;
}

.form-control[readonly]:not(.flatpickr-input)::placeholder {
    font-weight: 500;
}


.dt-info {
    font-size: 12px;
    font-weight: 500;
}

.btn {
    font-size: 12px;
}
.btn i {
    font-size: 15px;
}

.btn:not(.btn-sm) {
    padding: 5px 15px;
}

.dropdown-item {
    font-size: 12px;
}

.title-btn {
    padding: 8px 10px !important;
    margin: -5px -20px;
    font-size: 20px;
    line-height: 19.5px;
    border-radius: 0 5px 0 0;
    border: none;
    min-width: 60px;
}

.title-btn:hover {
    background-color: #00668d;
}

.card-title{
    border-radius: 5px 5px 0 0 ;
}



/* Style the table with the class tooltipTest */
table.tooltipTable {
    border-collapse: collapse; /* Ensures borders are shared between adjacent cells */
    width: 100%; /* Optional: Makes the table span the full width of its container */
    border: 1px solid #fff; /* Black border for the entire table */
}

/* Add borders to table cells */
table.tooltipTable th,
table.tooltipTable td {
    border: 1px solid #fff; /* Black border for table cells */
    padding: 2px 5px ; /* Adds some space inside cells */
    text-align: left; /* Aligns text to the left */
}

/* Optional: Add hover effect for rows */
table.tooltipTable tr:hover {
    background-color: #acacac; /* Light gray background when hovering */
    color: #000; /* Light gray background when hovering */
}

/* Optional: Style the header */
table.tooltipTable th {
    font-weight: bold; /* Make header text bold */
}


.tab-pane{
    outline: none;
}

.signit-main {
    min-height: calc(100vh - 250px)
}

.w-40 {
    width: 40%;
}


.card-footer, .card-body{
    font-size: 12px;
}

.ui-datepicker .ui-datepicker-title select{
    margin: 0 0.3em;
    width: 75px;
}
/* for edit button disable in frontend consignment listing screen */
.edit-btn.disabled {
    color: #aaa !important;
}
.edit-btn.disabled:hover {
    background: #aaa !important;
    color: #ddd !important;
}
/* for company logo */
.company-logo {
    width: auto;
    height: 70px;
    margin: 0;
}
.company-logo img{
    width: auto;
    /* height: 100%; */
}