/* Boost Styles */

/* Dropdown form styles for boost */
.dropdown-item-form {
    margin: 0;
    padding: 0;
}

.dropdown-item-form .dropdown-item {
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
}

.dropdown-item-form .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Boosted listing styles */
.boosted-listing {
    border: 2px solid #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

.boost-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* Boost indicators for premium vs basic */
.boost-premium {
    background: linear-gradient(45deg, #ffd700, #ffb700);
    border-color: #ffd700 !important;
}

.boost-basic {
    background: #17a2b8;
    border-color: #17a2b8 !important;
}

/* Boost button styles */
.btn-boost {
    position: relative;
    overflow: hidden;
}

.btn-boost::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-boost:hover::after {
    left: 100%;
}

/* Animations for boosted listings */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.boosted-listing {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .boost-badge {
        top: 5px;
        right: 5px;
        font-size: 0.8rem;
    }
    
    .card-header small {
        font-size: 0.75rem;
    }
}
