/* Switcher Styles */
.vtctm-region-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.vtctm-region-switcher .vtctm-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}

.vtctm-region-switcher .vtctm-item:hover {
    opacity: 0.8;
}

.vtctm-region-switcher .vtctm-flag {
    font-size: 1.2em;
}

.vtctm-region-switcher .vtctm-sep {
    color: #ccc;
}

/* Modal Styles */
.vtctm-modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    align-items: center;
    justify-content: center;
}

.vtctm-modal.show {
    display: flex !important;
}

.vtctm-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.vtctm-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 5px;
    cursor: pointer;
}

.vtctm-close:hover,
.vtctm-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.vtctm-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.vtctm-actions .button {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #f7f7f7;
    color: #333;
    font-weight: bold;
}

.vtctm-actions .button-primary {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.vtctm-actions .button:hover {
    opacity: 0.9;
}
