/* --- Component: Desktop Branch Selector Dropdown --- */
.tk-branch-dropdown {
    padding: 10px 40px 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #7b1f1f;
    background-color: #d4a017;
    border: 2px solid #7b1f1f;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b1f1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease;
}
.tk-branch-dropdown:hover {
    background-color: #7b1f1f;
    color: #fffaf7;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffaf7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}
.tk-branch-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.5);
}
.tk-branch-dropdown option {
    background-color: #fffaf7;
    color: #7b1f1f;
    font-weight: 500;
    padding: 8px;
}