.tayfun-captcha-container {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 15px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    clear: both;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    position: relative;
    z-index: 99;
}

.captcha-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.captcha-label-area {
    display: flex;
    align-items: center;
}

.captcha-label-text {
    font-weight: 600;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
}

.captcha-operation-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
}

.math-problem {
    background: #e9ecef;
    color: #495057;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 12px;
    border-right: 1px solid #ced4da;
    display: inline-block;
    white-space: nowrap;
    user-select: none;
}

input.captcha-input {
    border: none !important;
    box-shadow: none !important;
    width: 60px !important;
    height: 38px !important;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    padding: 0;
    margin: 0;
    outline: none !important;
    background: #fff !important;
    min-width: 50px;
    transition: border-color 0.3s;
    border-bottom: 2px solid transparent !important;
}

input.captcha-input:focus {
    background: #fff !important;
}

/* Chrome spin butonlarını gizle */
input.captcha-input::-webkit-outer-spin-button,
input.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input.captcha-input {
    -moz-appearance: textfield;
}

/* Disabled Buton */
button.disabled-captcha {
    /* JS opacity ve cursor ekliyor, burası destek */
    pointer-events: none !important;
}

@media (max-width: 480px) {
    .tayfun-captcha-container {
        padding: 10px;
    }
    .captcha-label-text {
        font-size: 12px;
        margin-right: 5px;
    }
    .math-problem {
        padding: 6px 8px;
        font-size: 13px;
    }
    input.captcha-input {
        width: 45px !important;
        height: 34px !important;
    }
}