/**
 * FlexiWords Pro Admin Stil
 */
.flexiwords-pro-admin {
    max-width: 1200px;
    margin: 0 auto;
}

.flexiwords-pro-admin h1 {
    color: #23282d;
    font-size: 2.2em;
    margin: 0.67em 0;
}

/* Sekme Stilleri */
.flexiwords-pro-tabs {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.flexiwords-pro-tabs .nav-tab-wrapper {
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.flexiwords-pro-tabs .nav-tab-wrapper li {
    margin: 0;
}

.flexiwords-pro-tabs .nav-tab {
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    margin: 0;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #646970;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flexiwords-pro-tabs .nav-tab:hover {
    color: #1d2327;
    background: #f0f0f1;
}

.flexiwords-pro-tabs .nav-tab-active {
    color: #0073aa;
    border-bottom: 3px solid #0073aa;
    background: #fff;
}

.flexiwords-pro-tabs .nav-tab-active:hover {
    background: #fff;
}

.flexiwords-pro-tabs .tab-content {
    display: none;
    padding: 20px;
}

.flexiwords-pro-tabs .tab-content.active {
    display: block;
}

/* Form Stilleri */
.flexiwords-form {
    max-width: 100%;
}

.flexiwords-form .form-group {
    margin-bottom: 15px;
}

.flexiwords-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.flexiwords-form input[type="text"],
.flexiwords-form input[type="number"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Hatalı form alanları için stil */
.flexiwords-form input.error {
    border-color: #dc3232;
    box-shadow: 0 0 2px rgba(220, 50, 50, 0.8);
}

.flexiwords-form .description {
    font-size: 12px;
    font-style: italic;
    color: #666;
}

.flexiwords-form .row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
}

.flexiwords-form .col-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .flexiwords-form .col-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Dönen Metin Girişleri */
#rotating-texts-container .rotating-text-input {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#rotating-texts-container .rotating-text-input input {
    flex: 1;
}

#rotating-texts-container .rotating-text-input .remove-rotating-text {
    margin-left: 10px;
    color: #cc0000;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
}

/* Tablo Stilleri */
.flexiwords-table {
    margin-top: 20px;
}

.flexiwords-table th {
    font-weight: 600;
}

.flexiwords-table .button {
    margin-right: 5px;
}

/* Form Butonları */
.form-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.form-actions .button {
    margin-right: 10px;
}

#cancel-edit {
    margin-left: 10px;
    background: #f7f7f7;
    border-color: #ccc;
}

#cancel-edit:hover {
    background: #f0f0f0;
}

/* Renk Seçici */
.wp-picker-container {
    margin-top: 5px;
}

/* Uyarı Mesajları */
.flexiwords-notice {
    padding: 10px 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.flexiwords-notice.success {
    background-color: #ecf7ed;
    border-left: 4px solid #46b450;
    color: #0c3c14;
}

.flexiwords-notice.error {
    background-color: #fbeaea;
    border-left: 4px solid #dc3232;
    color: #8a1f1f;
}

/* FlexiWords Pro Admin Stiller */

/* Form Düzeni */
.flexiwords-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.flexiwords-form .col-2 {
    flex: 1;
    min-width: 300px;
}

.flexiwords-form .form-group {
    margin-bottom: 20px;
}

.flexiwords-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.flexiwords-form input[type="text"],
.flexiwords-form input[type="number"],
.flexiwords-form select {
    width: 100%;
    max-width: 400px;
}

.flexiwords-form .description {
    margin-top: 5px;
    font-style: italic;
    color: #666;
}

.rotating-text-input {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.rotating-text-input input {
    flex: 1;
    margin-right: 5px;
}

.remove-rotating-text {
    background: #dc3232;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 1;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.form-actions .button {
    margin-right: 10px;
} 