/*
 * Property Specials Badge Plugin Styles
 * -------------------------------------
 * To add a new special badge color:
 * 1. Find your special slug (e.g. "new-special")
 * 2. Add a CSS rule like:
 *    .special-new-special { background-color: #yourcolor; }
 */

.special-badges {
    position: absolute;
    top: 10px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.special-badges-float-right {
    right: 10px;
    left: auto;
}

.special-badges-float-left {
    left: 10px;
    right: auto;
}

.special-badge {
    background-color: #ec6c58; /* Default badge color */
    color: white;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px !important;
    border-radius: 25px;
	width: fit-content;
	float: right;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}


.special-badges-float-right {
    right: 10px;
	line-height: 20px;
    left: auto;
}

.special-badges-float-left {
    left: 10px;
	line-height: 28px;
    right: auto;
}


/* Existing special colors 
 * .special-pay-4-stay-5 {
    background-color: #ec6c58;
}

.special-last-minute-special {
    background-color: #ec6c58;
}
*/

/* Add new special colors below like this:
.special-your-new-special-slug {
    background-color: #123456;
}
*/
