/**
 * Bilibili ID 绑定样式
 */

#bilibili-bind-area {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    /*max-width: 300px;*/
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#bilibili-id-input {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#bilibili-id-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 3px rgba(0, 115, 170, 0.3);
}

#bilibili-id-input::placeholder {
    color: #999;
}

#bilibili-bind-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    width: 100%;
}

#bilibili-bind-btn:hover {
    background: #005a87;
}

#bilibili-bind-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#bilibili-bind-message {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

#bilibili-bind-message span[style*="color: green"] {
    font-weight: 500;
}

#bilibili-bind-message span[style*="color: red"] {
    font-weight: 500;
}

.survey-area {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    /*max-width: 400px;*/
    margin: 15px 0;
}
.survey-question {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}
.survey-question a {
    color: #0073aa;
    text-decoration: none;
}
.survey-question a:hover {
    text-decoration: underline;
}
.survey-options {
    margin-bottom: 15px;
}
.survey-checkbox {
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
}
.survey-checkbox-input {
    margin-right: 5px;
}
.survey-submit-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.survey-submit-btn:hover:not(:disabled) {
    background: #005a87;
}
.survey-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.download-link {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}
.download-link:hover {
    background: #218838;
    color: white;
}




.success-message {
    color: green;
    font-weight: 500;
}

.error-message {
    color: red;
    font-weight: 500;
}

.survey-warning {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.survey-submit-btn.button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.survey-submit-btn.button:hover:not(:disabled) {
    background: #005a87;
}

.survey-submit-btn.button:disabled {
    background: #ccc;
    cursor: not-allowed;
}