/* Radio Button Styling */
.radio-container label {
    color: #f79824 !important;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 0 30px;
}
.storage-unit a.wgl-button.btn-size-md.show-price-btn {
    background: #31393C;
    border: 1px solid;
}
.storage-unit a.wgl-button.btn-size-md.show-price-btn:hover {
    background: #fff;
    color: #31393C;
}
.storage-unit .price-btn {
    width: 90px;
}
.storage-unit span.media-wrapper.icon-wrapper {
    background: #fff;
    border-radius: 10px;
}
.storage-unit i.icon.elementor-icon.wglicon.wglicon-forward {
    color: #f79824;
}
/* Features List Styling */
.features-list {
    list-style: none;
    padding-left: 8px;
    margin-top: 5px;
    display: inline-flex;
}
.feature-sec {
    display: inline-flex;
	width:100%;
}
.custom-booking-section {
    font-family: 'Poppins';
}
.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.features-list i {
    color: #f79824;
    margin-right: 8px;
    font-size: 16px;
}
.size {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    text-align: left;
    padding: 10px 20px;
}
/* Storage Table Styling */
.storage-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: #f79824;
    color: white;
    font-weight: bold;
    text-align: center;
}

.table-header th, .storage-unit td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: center;
}

/* Image Styling */
.storage-unit p {
    margin: 0; 
}
.storage-unit td img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
	cursor: pointer;
}

/* Align text inside Features column */
.storage-unit .column li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	color: #f79824;
    font-size: 14px;
}

.storage-unit .column p, .storage-unit .column ul, .storage-unit .column li {
    list-style: none;
    position: relative;
    padding-left: 27px;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

/* Remove bullet points */
.storage-unit .column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Radio Button Styling */
.storage-unit .column input[type="radio"] {
    margin-right: 12px;
	margin-left: 12px;
    transform: scale(1.3);
    cursor: pointer;
    accent-color: #f79824;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #f79824 !important;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}

.storage-unit .column input[type="radio"]:checked::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #f79824;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
	box-shadow: none;
}
span.btn-size-md {
    background: #f79824;
    color: #fff !important;
    padding: 6px 12px 6px 12px;
    border-radius: 15px;
    margin-left: 20px;
}
/* Popup Styling */
.storage-unit .popup {
    display: none;
    position: fixed;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.storage-unit .popup img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.storage-unit .popup .close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Tooltip Styling */
.storage-unit .tooltip {
    position: relative;
    cursor: pointer;
}

.storage-unit .tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
}

.storage-unit .tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}
.storage-table .table-header th, .storage-table .storage-unit td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: left;
}
.storage-table .table-header th {
	font-size: 22px;
}
/* Tooltip Styling */
.custom-tooltip {
    position: absolute;
    background: black;
    color: white;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    text-align: center;
    z-index: 999;
    width: 220px;
    display: none;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-container:hover .custom-tooltip {
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

/* Book Now Button */
.custom-booking-section {
    text-align: center;
    font-family: Arial, sans-serif;
}

.wgl-button {
    display: inline-flex;
    align-items: center;
    background-color: #f79824;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}
.custom-booking-section p{
        font-family: 'Poppins';
	}
.wgl-button .icon {
    margin-left: 5px;
}
i.fas.fa-pound-sign.tooltip {
    margin-top: -5px;
}
td.column.third {
	text-align: center;
}
td.column.third p {
text-align: center;
padding-left: 0px;
}
span.btn-size-md a {
    color: #fff;
}
.tooltip-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 5px; /* Space between icon and button */
}

.info-icon {
    font-size: 18px;
    color: #31393C;
    border-radius: 50%;
    padding: 3px 7px;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #31393C;
    color: white;
    text-align: center;
    padding: 3px;
    border-radius: 5px;
    position: absolute;
    bottom: 80%;
    left: 40%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
    font-size: 12px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    white-space: normal;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Responsive Table - Mobile View */
@media (max-width: 768px) {
    .storage-table {
        width: 100%;
        max-width: 100%;
        box-shadow: none;
    }

    .storage-table thead {
        display: none;
    }
    .storage-table tbody, 
    .storage-table tr, 
    .storage-table td {
        display: block;
        width: 100%;
    }

    .storage-unit {
        margin-bottom: 25px;
        border: 1px solid #ccc;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Display block for better stacking */
    .storage-unit td {
        display: block;
        padding: 10px;
        border: none;
    }

    /* Center align buttons */
    .storage-unit button {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    /* Reduce image size */
    .storage-unit td img {
        max-width: 100px;
        display: block;
        margin: 0 auto 10px;
    }

    /* Center Align Radio Buttons */
    .size {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .size input {
        margin: 5px;
    }
	.custom-booking-section p {
		text-align: center !important;
        font-family: 'Poppins';
		padding-left: 0px !important;
	}
	td.column.third {
		text-align: center;
	}
	.storage-unit .column p, .storage-unit .column ul, .storage-unit .column li {
		font-size:14px;
	}
}

/* Smallest Screens (Phones) */
@media (max-width: 480px) {
    .storage-unit {
        padding: 10px;
    }
	.size input {
        margin-top: 5px !important;
    }
	.storage-unit td.column.second p {
	text-align:center;   
	}
    .storage-unit td img {
        max-width: 200px;
    }

    .storage-unit button {
        font-size: 14px;
        padding: 10px;
    }

    .features-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-list li {
        font-size: 14px;
        margin: 3px;
    }
}