/* CurrencyToggleWidget Styles */

.ctw-wrapper {
    width: 100%;
    margin: 10px auto 5px auto;
    position: relative;
    z-index: 10;
}

.ctw-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ctw-toggle-container {
    display: flex;
    align-items: center;
    width: 220px;
    height: 44px;
    background-color: #ededed;
    border-radius: 22px;
    padding: 3px;
}

.ctw-toggle-btn {
    flex: 1;
    height: 100%;
    border-radius: 18px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #9a9a9a;
    transition: all 0.25s ease;
}

.ctw-toggle-btn.active {
    background-color: #ffffff;
    color: #e60000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ctw-announcement-bar {
    display: none;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 45px;
    padding: 0;
    border-radius: 22px;
    background: linear-gradient(to bottom, #ffcc00 0%, #ff9900 100%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
}

.ctw-announcement-bar.show {
    display: flex;
}

.ctw-announcement-icons {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.ctw-announcement-icon {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 50px;
    height: 100%;
}

.ctw-announcement-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.ctw-announcement-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    font-size: 15px;
    font-weight: bold;
    color: white;
}

.ctw-announcement-text {
    flex: 1;
    text-align: left;
}