/* Modern iframe container tasarımı */
.iframe-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e7ecf1;
    transition: all 0.25s ease;
}

.iframe-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Başlık stili */
.iframe-container h4 {
    background: #f5f8fa;
    margin: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #3598dc;
    border-bottom: 1px solid #e7ecf1;
}

.iframe-container h4 i {
    margin-right: 8px;
    color: #3598dc;
}

/* İçerik bölümü */
.iframe-container p {
    padding: 15px 20px 5px;
    color: #555;
    margin: 0;
    font-size: 14px;
}

/* Embed kod alanı */
.embed-code {
    padding: 0 20px 20px;
}

/* Metin alanı modernleştirme */
.code-copy-textarea {
    background: #f9fafc !important;
    border: 1px solid #e7ecf1 !important;
    border-radius: 5px !important;
    font-family: 'Courier New', monospace !important;
    color: #333 !important;
    font-size: 13px !important;
    padding: 12px !important;
    transition: all 0.2s ease !important;
}

.code-copy-textarea:focus {
    border-color: #3598dc !important;
    box-shadow: 0 0 0 3px rgba(53, 152, 220, 0.1) !important;
    outline: none !important;
}

/* Kopyalama buton stili */
.copyButtonForIframe {
    background: #3598dc !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    right: 8px !important;
    /*bottom: 8px !important;*/
}

.copyButtonForIframe:hover {
    background: #2980b9 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.copyButtonForIframe i {
    margin-right: 4px;
}

/* Well alanı tasarımı */
.iframe-container .well {
    background: #f9fafc !important;
    border: 1px solid #e7ecf1 !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    margin-top: 15px !important;
    padding: 15px !important;
}

.iframe-container .well a {
    color: #3598dc !important;
    word-break: break-all !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.iframe-container .well a:hover {
    color: #2980b9 !important;
    text-decoration: underline !important;
}

/* Üst başlık alanı */
.text-muted {
    padding-top: 15px !important;
}

/* Responsive düzenlemeler */
@media (max-width: 576px) {
    .copyButtonForIframe {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        margin-top: 10px !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}