body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Base styles for currency switchers */
.currency-switcher,
.product-currency-switcher,
.sticky-currency-switcher {
    margin: 10px 0;
    padding: 8px;
    border-radius: 4px;
}

.currency-switcher label,
.product-currency-switcher label,
.sticky-currency-switcher label {
    margin-right: 8px;
    font-weight: bold;
}

.currency-switcher select,
.product-currency-switcher select,
.sticky-currency-switcher select {
    padding: 5px;
    border-radius: 3px;
}

/* Sticky widget specific styles */
.sticky-currency-switcher {
    position: fixed;
    z-index: 9999;
    padding: 10px 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.currency-switcher {
    display: flex;
    justify-content: flex-end;
    margin: 10px;
    padding: 5px;
    border: 1px solid #ccc;
}

.currency-switcher select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.currency-switcher label {
    margin-right: 10px;
    font-weight: bold;
}

.alert {
    padding: 15px;
    margin: 20px 0;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.sticky-currency-switcher {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
}

.sticky-currency-switcher select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

/* Button style currency switcher */
.currency-switcher-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.currency-switcher-buttons .currency-button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.currency-switcher-buttons .currency-button:hover {
    background-color: #e5e5e5;
}

.currency-switcher-buttons .currency-button.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}