/* تنسيقات فيديو يوتيوب */
.form-group input[type="text"]#questionYoutubeURL {
    font-size: 14px;
    color: #c4302b;
    margin-top: 8px;
    transition: all 0.15s ease;
}

.form-group input[type="text"]#questionYoutubeURL::placeholder {
    color: #757575;
    font-size: 14px;
}

.youtube-container {
    margin: 20px auto;
    text-align: center;
}

.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* نسبة 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.replay-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c4302b 0%, #ff0000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(196, 48, 43, 0.3);
}

.replay-youtube-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 48, 43, 0.5);
    background: linear-gradient(135deg, #ff0000 0%, #c4302b 100%);
}

.replay-youtube-btn:active {
    transform: translateY(0);
}

.replay-youtube-btn i {
    font-size: 18px;
}
