.vizyon-filmleri-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: transparent;
    min-height: 200px;
}

.vizyon-filmleri-filtre {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vizyon-filmleri-filtre select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.vizyon-filmleri-filtre select:focus {
    outline: none;
    border-color: #999;
}

.film-kutusu {
    display: flex;
    background: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    width: 100%;
    height: auto;
    min-height: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

.film-kutusu:hover {
    transform: translateY(-2px);
}

.film-poster {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vizyon-tarihi {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

.film-bilgi {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.film-bilgi h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333 !important;
}

.film-detay {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}

.film-tur {
    margin: 0;
    padding: 4px 12px;
    background: #eee;
    border-radius: 4px;
    color: #666 !important;
    font-size: 13px;
    white-space: nowrap;
}

.film-sure {
    margin: 0;
    color: #666 !important;
    font-size: 13px;
}

.film-puan {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    color: #666 !important;
}

.imdb-logo {
    width: 35px;
    height: 17px;
}

.film-puan .puan {
    color: #f5c518;
    font-weight: bold;
}

.film-ozet {
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #666 !important;
    line-height: 1.6;
    flex: 1;
}

@media (max-width: 768px) {
    .film-kutusu {
        flex-direction: column;
        height: auto;
    }

    .film-poster {
        flex: 0 0 auto;
        height: 300px;
    }

    .film-bilgi {
        padding: 15px;
    }

    .film-bilgi h3 {
        font-size: 20px;
    }

    .film-detay {
        flex-wrap: wrap;
    }
}

.vizyon-filmleri-guncelleme {
    background: #f0f0f1;
    border-left: 4px solid #72aee6;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #333 !important;
}

.fragman-button {
    display: inline-flex;
    align-items: center;
    background: #1ed6d6;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.fragman-button:hover {
    background: #19abab;
    text-decoration: none;
}

.fragman-button .dashicons {
    margin-right: 8px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.vizyon-filmleri-filtreler {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Grid görünümü için stiller */
.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.film-kart {
    position: relative;
    transition: transform 0.3s ease;
    aspect-ratio: 2/3;
}

.film-kart:hover {
    transform: translateY(-5px);
}

.film-kart .film-poster {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.film-kart .film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.film-kart .film-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0,0,0,0.75) 35%,
        rgba(0,0,0,0.95) 100%
    );
    padding: 15px;
    color: white;
    text-align: center;
}

.film-kart .film-baslik {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.film-kart .film-vizyon-tarihi {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.film-kart:hover .film-overlay {
    background: linear-gradient(
        transparent 0%,
        rgba(0,0,0,0.85) 35%,
        rgba(0,0,0,1) 100%
    );
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .film-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .film-kart {
        aspect-ratio: 2/3;
    }
    
    .film-kart .film-baslik {
        font-size: 14px;
    }
    
    .film-kart .film-vizyon-tarihi {
        font-size: 12px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .film-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Admin Panel Genel Stiller */
.wrap {
    margin: 20px;
    max-width: 1200px;
}

/* Başlık Kutusu */
.admin-box.header {
    background: #01633b;
    color: white;
    border: none;
    padding: 20px 25px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-logo {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.admin-box.header h1 {
    color: white;
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Bildirim Kutusu */
.admin-box.notice {
    background: #f0f6fc;
    border-left: 4px solid #2271b1;
    padding: 15px 20px;
}

.admin-box.notice p {
    margin: 5px 0;
    color: #1d2327;
}

/* Form Kutusu */
.admin-box {
    background: white;
    border: 1px solid #e2e4e7;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    padding: 0;
}

/* Form Tablo Stili */
.form-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.form-table th {
    background: #f8f9fa;
    padding: 20px 25px;
    width: 230px;
    border-right: 1px solid #e2e4e7;
    font-weight: 500;
    color: #1d2327;
}

.form-table td {
    padding: 20px 25px;
}

.form-table tr {
    border-bottom: 1px solid #e2e4e7;
}

.form-table tr:last-child {
    border-bottom: none;
}

.form-table tr:first-child th {
    border-top-left-radius: 10px;
}

.form-table tr:last-child th {
    border-bottom-left-radius: 10px;
}

/* Input ve Select Stilleri */
.form-table input[type="text"],
.form-table select,
.form-table .regular-text {
    width: 100%;
    max-width: 400px;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-table input[type="text"]:focus,
.form-table select:focus,
.form-table .regular-text:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* Checkbox Stili */
.form-table input[type="checkbox"] {
    border-color: #e2e4e7;
}

/* Açıklama Metinleri */
.description {
    margin-top: 8px;
    color: #646970;
    font-size: 13px;
    line-height: 1.5;
}

/* Manuel Güncelleme Bölümü */
.manuel-guncelleme-bolumu {
    padding: 25px;
    background: #fff;
    margin-bottom: 25px;
}

.guncelleme-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.guncelleme-info {
    flex: 1;
}

.guncelleme-info h2 {
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 18px;
    color: #1d2327;
    border: none;
}

.guncelleme-info p {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

.guncelleme-buton {
    display: flex;
    align-items: center;
    gap: 15px;
}

#guncelleme-durumu {
    font-size: 14px;
}

/* Responsive düzenleme */
@media (max-width: 782px) {
    .guncelleme-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .guncelleme-info {
        margin-bottom: 10px;
    }
}

/* Butonlar */
.button-primary {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: white !important;
    padding: 5px 15px !important;
    height: auto !important;
    transition: all 0.2s !important;
}

.button-primary:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

/* Submit Button Container */
.admin-box .submit {
    margin: 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e2e4e7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Renk Seçici Stilleri */
.wrap .admin-box .renk-secici-grup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px;
    margin: 0;
}

.wrap .admin-box .renk-secici {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.wrap .admin-box .renk-secici h4 {
    margin: 0 0 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #23282d;
    border: none;
    padding: 0;
}

.wrap .admin-box .renk-secici-grup-baslik {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.wrap .admin-box .renk-secici-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #f0f0f1;
}

.wrap .admin-box .renk-secici-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wrap .admin-box .renk-baslik {
    font-size: 13px;
    color: #444;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wrap .admin-box .renk-baslik code {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #135e96;
    margin: 0;
}

/* WordPress Renk Seçici Düzenlemeleri */
.wrap .admin-box .wp-picker-container {
    display: inline-block !important;
    position: relative !important;
}

/* Renk seçici buton */
.wrap .admin-box .wp-picker-container .wp-color-result.button {
    height: 30px !important;
    min-width: 100px !important;
    padding-left: 35px !important;
    margin: 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s !important;
}

/* Renk seçici buton hover */
.wrap .admin-box .wp-picker-container .wp-color-result.button:hover {
    border-color: #2271b1 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Renk seçici buton metin */
.wrap .admin-box .wp-picker-container .wp-color-result-text {
    line-height: 28px !important;
    font-size: 13px !important;
    padding: 0 12px !important;
    background: #f8f9fa !important;
    border-left: 1px solid #ddd !important;
    color: #50575e !important;
}

/* Renk seçici popup */
.wrap .admin-box .wp-picker-container .wp-picker-holder {
    position: absolute !important;
    z-index: 100 !important;
    margin-top: 35px !important;
    left: 0 !important;
}

/* Renk seçici input */
.wrap .admin-box .wp-picker-container input[type="text"].wp-color-picker {
    height: 30px !important;
    min-width: 80px !important;
    font-size: 13px !important;
    border-radius: 4px !important;
    margin: 0 5px !important;
    padding: 0 8px !important;
}

/* Renk seçici temizle butonu */
.wrap .admin-box .wp-picker-container .wp-picker-clear {
    height: 30px !important;
    padding: 0 12px !important;
    margin: 0 !important;
    font-size: 13px !important;
    border-radius: 4px !important;
    background: #f8f9fa !important;
    border: 1px solid #ddd !important;
    color: #50575e !important;
}

/* Renk seçici temizle buton hover */
.wrap .admin-box .wp-picker-container .wp-picker-clear:hover {
    background: #f0f0f1 !important;
    border-color: #999 !important;
}

/* Renk seçici açık durumu */
.wrap .admin-box .wp-picker-container.wp-picker-active {
    display: inline-flex !important;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
    position: relative !important;
    min-height: 285px !important;
}

/* Renk seçici popup konumu */
.wrap .admin-box .wp-picker-container .iris-picker {
    position: absolute !important;
    margin-top: 35px !important;
    border-color: #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    background: #fff !important;
    z-index: 9999 !important;
    left: 0 !important;
}

/* Mobil Düzenleme */
@media screen and (max-width: 782px) {
    .wrap .admin-box .renk-secici-grup {
        grid-template-columns: 1fr;
    }
    
    .wrap .admin-box .renk-secici-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Admin Box Başlık Stili */
.admin-box-title {
    margin: 0;
    padding: 20px 25px;
    border-bottom: 1px solid #e2e4e7;
    font-size: 16px;
    color: #1d2327;
    background: #f8f9fa;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Form tablosunun üst kenarını düzelt */
.admin-box .form-table {
    margin-top: -1px;  /* Başlık ile tablo arasındaki çift çizgiyi önle */
}

/* Renk seçici grup başlığı altındaki boşluğu düzelt */
.admin-box .renk-secici-grup {
    margin-top: -1px;  /* Başlık ile içerik arasındaki çift çizgiyi önle */
}

/* Toggle Switch Stili */
.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-switch .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #ccd0d4;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.toggle-switch .switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .switch {
    background-color: #01633b;
}

.toggle-switch input:checked + .switch::after {
    transform: translateX(20px);
}

.toggle-switch input:focus + .switch {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #01633b;
}

.toggle-switch .toggle-label {
    font-size: 14px;
    color: #1d2327;
    cursor: pointer;
    user-select: none;
}

/* Hover efekti */
.toggle-switch:hover .switch {
    background-color: #b5bcc2;
}

.toggle-switch:hover input:checked + .switch {
    background-color: #015032;
}

.son-guncelleme {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e4e7;
}

.son-guncelleme p {
    margin: 5px 0;
    color: #666;
    font-size: 13px;
}

.son-guncelleme p:first-child {
    color: #1d2327;
    font-weight: 500;
}

/* Başlık İkonları */
.admin-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-icon {
    color: #1d2327;
}

.guncelleme-info h2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guncelleme-info h2 .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Güncelleme Uyarı Kutusu */
.guncelleme-uyari {
    background-color: #fff8e5;
    border-left: 4px solid #ffb900;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.uyari-icerik {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
}

.uyari-icerik .dashicons {
    color: #ffb900;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.uyari-icerik p {
    margin: 0;
    color: #1d2327;
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.shortcode-info {
    padding: 15px;
}

.shortcode-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shortcode-content p {
    margin: 0;
    font-size: 14px;
}

.shortcode-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f1;
    padding: 10px;
    border-radius: 4px;
}

.shortcode-box code {
    font-size: 14px;
    padding: 5px 10px;
    background: #fff;
    border-radius: 3px;
    flex: 1;
}

.copy-button {
    display: flex !important;
    align-items: center;
    gap: 5px;
}

.copy-button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.loading {
    text-align: center;
    padding: 20px;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1ed6d6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 