.navbar-row{
    background-color: #921F3A;
}
.main-menu-content ul li a{
    color: white;
}
.main-menu-content ul li a:hover{
    color: white;
}
.bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #a0183a;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    font-family: Arial, sans-serif;
    height: 40px;
}

.left-label, .right-label {
    background-color: #8c1d3c;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.middle-content {
    flex-grow: 1;
    padding: 0 10px;
    height: 100%;
}

.new-badge {
    background-color: yellow;
    color: red;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 5px;
    border-radius: 2px;
}
.panel-default{
    border-top: 2px solid #8C1D3C !important;
}
.bg-theme{
    background-color: #8C1D3C !important;
}
.text-theme{
    color: #8C1D3C !important;
}
.dashboard-card{
    min-height: 160px;
    border: 2px solid #8C1D3C;
}
.required:after{content:"*";position:relative;font-size:inherit;color:var(--bs-danger);padding-left:.25rem;font-weight:600}
.hover-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    transition: all 0.3s ease;
    background-color: #aaadaf;
}
.room-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    width: 280px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 13px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    /*padding-bottom: 10px;*/
    border-bottom: 1px solid #eee;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    /*border-color: #007bff;*/
}

.room-name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.room-price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 14px;
}

.room-details {
    line-height: 1.8;
}

.room-details div {
    display: flex;
    margin-bottom: 2px;
}

.room-details .label {
    font-weight: bold;
    color: #333;
    width: 80px;
    flex-shrink: 0;
}

.room-details .value {
    color: #666;
    margin-left: 5px;
}
