/**
 * DP Nexus Proxy Form — Absolute Dark Perfection
 */

/* 1. 基础容器强制深色 */
#app .v-application,
#app .v-application--wrap,
#app .v-main {
    background-color: #0d1117 !important;
    background: #0d1117 !important;
}

/* 2. 表单卡片背景 */
#app .v-card, 
#app .v-sheet,
#app .v-form {
    background-color: #0d1117 !important;
    background: #0d1117 !important;
    border: none !important;
}

/* 3. 输入框/下拉框：蓝色边框 + 白色文字 */
#app .v-text-field--outlined fieldset,
#app .v-text-field--outlined .v-input__control {
    border: 1px solid #009bde !important; /* 品牌蓝边框 */
    background-color: #090d13 !important; /* 深黑内色 */
}

/* 选中的文字颜色（解决看不清的问题） */
#app .v-select__selection,
#app .v-select__selection--comma,
#app input {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* 标签文字（Proxy Location 等） */
#app .v-label,
#app .v-label--active {
    color: #a5b0c0 !important;
}

/* 4. 按钮：精准匹配图二的亮蓝色 */
#app .v-btn.primary,
#app .add-to-cart,
#app button[type="submit"] {
    background: linear-gradient(135deg, #009bde 0%, #007bb0 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 155, 222, 0.4) !important;
    height: 52px !important;
    color: #ffffff !important;
}

/* 5. 暴力清除任何内联残留白底 */
#app [style*="background-color: rgb(255, 255, 255)"],
#app [style*="background-color:#ffffff"],
#app .white {
    background-color: transparent !important;
}