/* Network Switch Styles */

.network-switch-container {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.network-switch-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.network-switch-button:hover {
    background-color: #555;
}

.network-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    min-width: 150px;
    margin-top: 5px;
}

.network-dropdown.hidden {
    display: none;
}

.network-option {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.network-option:hover {
    background-color: #444;
}

.network-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff; /* Default icon color */
    display: inline-block;
}

.eth-icon {
    background-color: #627EEA; /* Ethereum blue */
}

.bsc-icon {
    background-color: #F3BA2F; /* BSC yellow */
}

.dropdown-icon {
    width: 16px;
    height: 16px;
}

.current-chain-display {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #aaa;
}
