.login-logo
{
    width: 16rem;
}

.dash-logo
{
    width: 11rem;
}

.svg-hover circle,
    .svg-hover path,
    .svg-hover svg circle,
    .svg-hover svg ellipse {
        transition: fill 0.3s ease, stroke 0.3s ease;
    }

    .svg-hover:hover circle,
    .svg-hover:hover path,
    .svg-hover:hover svg ellipse {
        fill: #eed173 !important;
        stroke: #eed173 !important;
    }

.primary-text
{
    color: #4e1015;
}

.secondary-text
{
    color: #eed173;
}

.primary-button
{
    border-color: #4e1015;
    background-color: #4e1015;
    color: #fff
}

.primary-button:hover 
{
    border-color: #eed173;
    background-color: #eed173;
    color: #4e1015
}

.secondary-button
{
    border-color: #eed173;
    background-color: #eed173!important;
    color: #4e1015;
}

.dropdown-menu {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.dropdown-menu li {
    list-style: none;
    margin: 5px 0;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
    display: block;
}

.bmaColortext
{
    color:#6aa6ab;
}

.group-hover:hover
{
    color:#f25985 !important;
}

.bmaColortext:active
{
    color: #f25985 !important;
    background-color: #36314b;
    font-weight: bold !important;
}

/* Flexbox container for input */
.contact-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Input field takes full width */
.contact-input-group input {
    flex: 1;
}

/* Flexbox container for buttons */
.button-container {
    display: flex;
    align-items: center; /* Vertically center the buttons */
    gap: 10px; /* Space between the - and + buttons */
    margin-top: 10px; /* Space above the button container */
}

/* Style for buttons to match */
.remove-contact-number, #add_contact_number {
    display: inline-block;
    padding: 5px 10px; /* Ensure consistent padding */
    font-size: 14px; /* Ensure font size consistency */
    line-height: 1.5; /* Ensure line height consistency */
    border-radius: 4px; /* Ensure consistent border radius */
    border: 1px solid #ccc; /* Consistent border */
    background-color: #fff; /* Consistent background color */
    color: #36314b; /* Consistent text color */
    cursor: pointer; /* Pointer cursor for buttons */
    text-align: center; /* Center text inside button */
}

/* Ensure spacing between fields */
.form-group {
    margin-bottom: 10px; /* Space below each field */
}

/* Add spacing between dynamically added fields */
#contact_numbers_container .form-group {
    margin-bottom: 10px; /* Space between fields */
}

/* Ensure consistent spacing for input fields */
#contact_numbers_container .form-group input {
    width: 100%; /* Make input fields take full width of the container */
}


/* Flexbox container for input */
.book-input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the title and link inputs */
    margin-bottom: 10px;
}

/* Input fields take full width */
.book-input-group input {
    flex: 1;
}

/* Flexbox container for buttons */
.button-container-books {
    display: flex;
    align-items: center; /* Vertically center the buttons */
    gap: 10px; /* Space between the - and + buttons */
    margin-top: 10px; /* Space above the button container */
}

/* Style for buttons to match */
.remove-book, #add_book {
    display: inline-block;
    padding: 5px 10px; /* Ensure consistent padding */
    font-size: 14px; /* Ensure font size consistency */
    line-height: 1.5; /* Ensure line height consistency */
    border-radius: 4px; /* Ensure consistent border radius */
    border: 1px solid #ccc; /* Consistent border */
    background-color: #fff; /* Consistent background color */
    color: #333; /* Consistent text color */
    cursor: pointer; /* Pointer cursor for buttons */
    text-align: center; /* Center text inside button */
}

/* Ensure spacing between fields */
.form-group {
    margin-bottom: 10px; /* Space below each field */
}

/* Add spacing between dynamically added fields */
#books_container .book-input-group {
    margin-bottom: 10px; /* Space between fields */
}


.customer-row {
    cursor: pointer; /* Optional: shows pointer cursor on hover */
}

.customer-row.bg-gray-200 {
    background-color: #dddaee; /* Light gray background for selected row */
}

.tab-row {
    border-right: 1px solid #e8eaed;
}

.tab-link {
    padding: 0.5rem 1rem;
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
}

.tab-link:hover,
.tab-link.active {
    color: #fff;
    border-radius: 6px 6px 0px 0px;
    background-color: #4e1015;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.btn-primarycolor
{
    color: #fff;
    background-color: #46425c;
}

.btn-primarycolor:hover
{
    color: #fff;
    background-color: #61969d;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}


.bg-primary {
    background-color: #46425c; /* Your theme's primary color */
}

.text-primary {
    color: #46425c; /* Your theme's primary color */
}

.flex-1 {
    flex-grow: 1;
}

.border-red-500 {
    border-color: #f56565;
}

.text-red-500 {
    color: #f56565;
}

.button-flex {
    display: flex;
    gap: 15px; /* Adjust spacing between buttons */
}

/* Styling for the suggestion dropdown */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 2px); /* Place right below the input field */
    left: 0;
    width: 100%; /* Match the input field width */
    max-height: 0; /* Start with zero height for animation */
    opacity: 0; /* Fully transparent by default */
    overflow: hidden; /* Hide overflowing content */
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 999;
    transform: translateY(-10px); /* Slightly offset upward */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out; /* Smooth animation */
}

/* Show state for the dropdown */
.suggestions-dropdown.show {
    max-height: 300px; /* Expand to maximum height */
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
}

/* Individual suggestion items */
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for long text */
}

/* Hover effect for suggestion items */
.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Loading spinner styles (optional) */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
