/* Styling for the radio button group */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Style for each radio item */
.radio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 120px;
    height: 120px;
    border: 2px solid #3498db;
    border-radius: 10px;
    padding: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
}

/* Hover effect */
.radio-item:hover {
    transform: translateY(-5px);
    background-color: #f0f8ff;
}

/* Icon size and styling */
.icon {
    font-size: 30px;
    margin-bottom: 8px;
}

/* Text styling */
.radio-content p {
    font-size: 14px;
    font-weight: 600;
    color: #3498db;
}

/* Active radio option (checked state) */
input[type="radio"]:checked + .radio-content {
    background-color: #ecf8ff;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Hide default radio button */
input[type="radio"] {
    display: none;
}


.my-listing:hover {
    background-color: #042c4c;
    color: #fff;
    box-shadow:0 4px 6px rgba(4, 44, 76, 0.925);
}

.bg-ars-dark {
	background-color: #f7f8f8;
}

.bg-ars-orange {
	background-color: #ff7a0e;
}