/* --- Ana Form Kutusu --- */
.roycera-verifier-wrapper {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-top: 5px solid #1246AB; /* Üst kenara mavi bir vurgu ekledik */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

/* --- Form Elemanları --- */
.roycera-form .form-group {
    margin-bottom: 20px;
}

.roycera-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

/* --- Yazı Giriş Alanı (Input) --- */
.roycera-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Önemli */
    transition: border-color 0.3s, box-shadow 0.3s; /* Odaklanma efektine animasyon ekledik */
}

/* Yazı alanına tıklandığında (focus) mavi bir çerçeve ve gölge efekti */
.roycera-form input[type="text"]:focus {
    border-color: #1246AB;
    box-shadow: 0 0 0 3px rgba(18, 70, 171, 0.2);
    outline: none;
}


/* --- BUTON STİLLERİ --- */
.roycera-verifier-wrapper .roycera-button {
    display: inline-block;
    width: 100%;
    background-color: #1246AB; /* İstediğin mavi renk */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.2s;
}

/* Butonun üzerine gelince biraz daha koyu bir mavi ve hafif bir büyüme efekti */
.roycera-verifier-wrapper .roycera-button:hover {
    background-color: #0f3a8a; /* Mavinin biraz koyu tonu */
    transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
    color: #ffffff; /* YENİ EKLENDİ: Yazı renginin beyaz kalmasını garanti eder */
}

/* Buton devredışıyken */
.roycera-verifier-wrapper .roycera-button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
    transform: translateY(0);
}


/* --- Sonuç Mesajları --- */
.roycera-result {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    border-left: 5px solid;
    line-height: 1.5;
}

#roycera-result-container {
    display: none;
}

.roycera-result.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left-color: #4caf50;
}

.roycera-result.error {
    background-color: #ffebee;
    color: #c62828;
    border-left-color: #f44336;
}

.roycera-result.warning {
    background-color: #fff8e1;
    color: #795548;
    border-left-color: #ffc107;
}

.roycera-result small {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}