/**
 * Inhostify Currency Pro Styles
 */

/* Currency Switcher Styles */
.inhostify-currency-switcher {
    display: inline-flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    position: relative;
    margin: 10px 0;
}

.inhostify-currency-title {
    margin-right: 10px;
    font-size: 14px;
    color: #333;
}

.inhostify-currency-dropdown {
    position: relative;
    min-width: 80px;
    cursor: pointer;
}

.inhostify-current-currency {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.inhostify-current-currency:hover {
    background-color: #e9e9e9;
}

.inhostify-currency-symbol {
    margin-right: 5px;
    font-weight: bold;
}

.inhostify-dropdown-arrow {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s;
}

.inhostify-currency-dropdown.active .inhostify-dropdown-arrow {
    transform: rotate(180deg);
}

.inhostify-currency-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inhostify-currency-dropdown.active .inhostify-currency-list {
    display: block;
}

.inhostify-currency-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.inhostify-currency-item:hover {
    background-color: #f5f5f5;
}

.inhostify-currency-item.active {
    background-color: #ffffff;
    font-weight: bold;
}

/* Price elements with currency */
.inhostify-price {
    position: relative;
}

.inhostify-price-original {
    display: none;
}

/* Admin styles */
.inhostify-shortcode-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #0073aa;
    margin-top: 20px;
}

.inhostify-shortcode-info code {
    background: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .inhostify-currency-switcher {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .inhostify-currency-title {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .inhostify-currency-dropdown {
        width: 100%;
    }
}
