/* =========================================
   Genel Wrap ve Typography
   ========================================= */
.my-plugin-settings {
    max-width: 960px;
    margin: 30px auto;
    padding: 25px 30px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Başlıklar */
.my-plugin-settings h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0073aa;
}

/* =========================================
   Bilgi Kutuları
   ========================================= */
.my-plugin-settings .notice {
    background: linear-gradient(90deg, #e0f7ff, #f0fcff);
    border-left: 5px solid #1e90ff;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================
   Tab Başlıkları
   ========================================= */
.nav-tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.nav-tab {
    padding: 12px 25px;
    margin-right: 6px;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
    border: 1px solid #ddd;
    border-bottom: none;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-tab:hover {
    background: #e4f1ff;
    color: #0073aa;
}
.nav-tab.nav-tab-active {
    background: #ffffff;
    border-bottom: 2px solid #ffffff;
    color: #0073aa;
    font-weight: 600;
    box-shadow: inset 0 -2px 0 #0073aa;
}

/* =========================================
   Tab İçerik Kartları
   ========================================= */
.tab-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

/* =========================================
   Form Elemanları
   ========================================= */
.form-table th {
    width: 240px;
    padding: 12px 10px;
    vertical-align: middle;
    font-weight: 500;
    color: #444;
}

.form-table td input[type="color"],
.form-table td input[type="text"],
.form-table td textarea {
    width: 100%;
    max-width: 400px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fafafa;
    font-size: 14px;
    transition: all 0.25s ease;
}
.form-table td input[type="color"]:focus,
.form-table td input[type="text"]:focus,
.form-table td textarea:focus {
    outline: none;
    border-color: #1e90ff;
    box-shadow: 0 0 8px rgba(30,144,255,0.3);
}

/* Checkbox modern görünüm */
.form-table td input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 6px;
    cursor: pointer;
}

/* =========================================
   Kaydet Butonu
   ========================================= */
.button-primary {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(30,144,255,0.3);
    transition: all 0.3s ease;
}
.button-primary:hover {
    background: linear-gradient(135deg, #1c86ee, #00a5ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(30,144,255,0.35);
}

/* =========================================
   Responsive & Mobil Uyumluluk
   ========================================= */
@media (max-width: 768px) {
    .nav-tab-wrapper {
        flex-direction: column;
    }
    .nav-tab {
        margin-bottom: 8px;
    }
    .form-table th, .form-table td {
        display: block;
        width: 100%;
    }
    .form-table th {
        margin-bottom: 5px;
    }
}
