.rcbc-wrapper {
    max-width: 600px;
    margin: 20px auto;
    font-family: sans-serif;
    border: 1px solid #fff;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}
#rcbc-current-month {
    font-weight: bold;
}
.rcbc-calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.rcbc-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.rcbc-day-header {
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
}
.rcbc-day {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    min-height: 50px;
}
@media (max-width: 768px) {
	.rcbc-day {
		padding: 5px;
	}
}
.rcbc-day:hover {
    background-color: #f9f9f9;
}
.rcbc-price {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}
@media (max-width: 768px) {
	.rcbc-price {
		font-size: 12px;
	}
}
.rcbc-blocked {
    background-color: #ffebeb;
    color: #cc0000;
    cursor: not-allowed;
    text-decoration: line-through;
}
.rcbc-selected {
    background-color: #e6fffa;
    border-color: #00a09d;
}
.rcbc-range {
    background-color: #f0fdfc;
}
.rcbc-summary {
    margin-top: 20px;
    padding: 15px;
    background: #f7f7f7;
    border-top: 2px solid #ccc;
}
.rcbc-form {
    margin-top: 20px;
}
.rcbc-form-group {
    margin-bottom: 10px;
}
.rcbc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.rcbc-form-group input, .rcbc-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
}
.rcbc-btn {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
.rcbc-btn:hover {
    background: #005177;
}
button, [type='button'], [type='reset'], [type='submit'] {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    background-color: var(--orange);
    color: var(--white);
}

/* DODANO: Stil za datume brez cen */
.rcbc-no-price {
    background-color: #fffdf0; /* Svetlo rumeno ozadje */
    color: #b78900; /* Temno rumena/oker barva teksta */
    cursor: not-allowed;
    text-decoration: line-through; /* Prečrtano */
    opacity: 0.8;
}
.rcbc-no-price .rcbc-price {
    color: #b78900;
    font-weight: bold;
    text-decoration: none; /* Da besedilo 'Ni na voljo' ni nujno prečrtano, če ne želite */
    font-size: 0.7em;
    line-height: 1.2;
    display: block;
}

/* NOVO: Najnižja cena (svetlo oranžna) */
.rcbc-lowest-price {
    background-color: #ffe0b2; /* Svetlo oranžna */
    border-color: #ffcc80;
}