.yengec-setup-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Butonları yan yana hizala */
.yengec-button-group {
    gap: 12px; /* Butonlar arası boşluk */
    justify-content: center; /* Ortalar */
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Tüm butonlar için ortak stil */
.yengec-button-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
}

/* WordPress stilinde mavi buton */
.yengec-button-group .install-button {
    background-color: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
}

/* Yeşil renkli Yengeç Paneli butonu */
.yengec-button-group .panel-button {
    background-color: #28a745;
    color: #fff;
    border: 1px solid #28a745;
}

/* Hover efektleri */
.yengec-button-group a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}