﻿# DateTimePicker {
    width: 200px; /* Adjust this value to increase or decrease the width of the DateTimePicker */
}

.bi {
    margin-right: 10px; /* Adjust this value to increase or decrease the spacing of icons */
}

.header-row {
    padding: 1px;
}

.detail-row {
    padding: 8px;
}

.total-row {
    padding: 10px;
}

.input-row {
    padding: 10px;
}

.text-right-align {
    text-align: right;
}

/* Change the background color of options */
select option[value^="0"],
select option[value^="1"] {
    background-color: rgba(180, 180, 180, 0.3); /* Change to desired color */
}

select option[value^="2"] {
    background-color: rgba(150, 150, 150, 0.3); /* Change to desired color */
}

select option[value^="3"] {
    background-color: rgba(100, 100, 100, 0.3); /* Change to desired color */
}

select option[value^="4"] {
    background-color: rgba(210, 210, 210, 0.3); /* Change to desired color */
}

select option[value^="5"] {
    background-color: rgba(210, 210, 210, 0.3); /* Change to desired color */
}

select option[value^="6"] {
    background-color: rgba(210, 210, 210, 0.3); /* Change to desired color */
}

select option[value^="7"] {
    background-color: rgba(210, 210, 210, 0.3); /* Change to desired color */
}

/*select option[value^="8"] {
    background-color: rgba(0, 0, 0, 0.4);*/ /* Change to desired color */
/*}*/

/* wwwroot/css/app.css */
.custom-toast {
    background: #198754;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.2);
}

.toast.text-bg-danger {
    border-left: 6px solid #dc3545;
    font-weight: bold;
}

.toast-strong-shadow {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.5), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
}

.toast-outline {
    border: 2px solid #fff;
    /* or use a semi-transparent border for subtlety */
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.content-header {
    min-height: 40px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.content-header .btn,
.content-header .form-control,
.content-header .form-select {
    font-size: 0.9em;
    padding: 2px 8px;
    height: 30px;
}

.business-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
    min-height: 45px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.business-card .company-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.business-card .card-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
}


