.roseby-forex-converter-widget .converter {
    background: linear-gradient(135deg, #d90a9d 0%, #fc8509 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0 0 1.5rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.roseby-forex-converter-widget .converter h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.roseby-forex-converter-widget .converter-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.roseby-forex-converter-widget .tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.roseby-forex-converter-widget .tab-btn.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

.roseby-forex-converter-widget .tab-btn:hover {
    background: rgba(255,255,255,0.15);
}

.roseby-forex-converter-widget .tab-content {
    display: none;
}

.roseby-forex-converter-widget .tab-content.active {
    display: block;
    animation: rosebyFadeIn 0.3s ease-in;
}

.roseby-forex-converter-widget .converter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roseby-forex-converter-widget .converter-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.roseby-forex-converter-widget .converter select,
.roseby-forex-converter-widget .converter input {
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

.roseby-forex-converter-widget .converter input {
    flex: 1;
}

.roseby-forex-converter-widget .convert-btn {
    background: white;
    color: #0a0709;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    width: 100%;
}

.roseby-forex-converter-widget .convert-result {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

@keyframes rosebyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .roseby-forex-converter-widget .converter-row {
        flex-direction: column;
    }
}