﻿.labelsonuc {
    width: 100%;
    text-align: center;
    font-family: Tahoma;
    font-size: 20px;
}

/* Genel yapı */
.video-wrapper {
    padding: 20px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-box, .video-card {
    flex: 1 1 300px; /* min 300px, esnek genişlik */
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 10px;
    box-sizing: border-box;
}

    .video-box iframe {
        width: 100%;
        height: 300px;
        border: none;
    }

.video-card {
    background-color: #fff;
}

/* Başlık */
.card-title {
    font-family: "Segoe UI", Tahoma, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

/* Repeater içeriği */
.haber-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.haber-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.haber-link {
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

    .haber-link:hover {
        color: #0066cc;
    }

/* Form stili */
.form-group {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-input {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

    .form-input:focus {
        outline: none;
        border-color: #007acc;
    }

/* Captcha alanı */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap; /* Ekran daralırsa alt satıra geçer */
}

.captcha-item {
    display: flex;
    align-items: center;
}

.captcha-img {
    height: 40px;
    width: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.captcha-btn {
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background-color: #666;
    color: white;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

    .captcha-btn:hover {
        background-color: #444;
    }

.captcha-input-wrapper {
    flex: 1; /* Genişleyebilen alan */
}


/* Kayıt butonu */
.submit-btn {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #666;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

    .submit-btn:hover {
        background-color: #444;
    }

/* Sonuç mesajı */
.form-result {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: green;
}
