/* 通用样式文件 - 用于所有页面共享的样式 */

/* 语言选择器样式 - 使用!important确保样式被应用 */
.language-selector select {
    background: rgba(30, 60, 114, 0.8) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    padding-right: 25px !important;
}

.language-selector select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

.language-selector select option {
    background-color: #2a5298;
    color: white;
}

/* 顶部信息栏统一样式 */
.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-weight: 500;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}