/* CSS LENGKAP YOUTUBE SEARCH PLUGIN - FIX UNTUK MOBILE & DESKTOP */

.youtube-search-container {
    max-width: 750px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background: #000;
    padding: 20px;
    border-radius: 8px;
}

.youtube-search-header {
    text-align: center;
    margin-bottom: 20px;
}

.youtube-search-header h2 {
    color: #ffff00;
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.youtube-search-form {
    margin-bottom: 25px;
}

.youtube-search-input-group {
    display: flex;
    position: relative;
    margin-bottom: 15px;
}

.youtube-search-input {
    flex: 1;
    padding: 15px 50px 15px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease-out;
    background: #000;
    color: #fff;
    height: 50px;
    width: 100%;
}

.youtube-search-input:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.2);
}

.youtube-search-input:hover {
    border-color: #ffff00;
}

.youtube-search-input::placeholder {
    color: #ccc;
}

/* TOMBOL PENCARIAN DI DALAM INPUT */
.youtube-search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: transparent !important;
    color: #ffff00;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    
    /* NONAKTIFKAN SEMUA TRANSISI DAN EFEK */
    transition: none !important;
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* TOMBOL TANPA EFEK SAMA SEKALI */
.youtube-search-button:hover,
.youtube-search-button:focus,
.youtube-search-button:active {
    background: transparent !important;
    color: #ffff00 !important;
    border: none !important;
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.youtube-search-button:disabled {
    background: transparent !important;
    cursor: not-allowed;
    color: #666 !important;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff00;
}

.loading-icon {
    display: none !important;
}

.loading-spinner,
.spinner-circle {
    display: none !important;
}

/* LOADING DI TENGAH - FIX UNTUK SEMUA DEVICE */
.youtube-search-loading {
    text-align: center;
    padding: 30px 20px;
    color: #fff;
    animation: fadeIn 0.5s ease-out;
    margin-top: 10px;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
}

.youtube-search-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.loading-dots {
    display: flex !important;
    gap: 5px;
}

.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffff00;
    animation: loadingDot 1.4s infinite ease-in-out both;
    display: block !important;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* MEDIA QUERIES UNTUK MOBILE - FIX LOADING */
@media (max-width: 768px) {
    .youtube-search-loading {
        padding: 25px 15px;
        margin-top: 8px;
    }
    
    .youtube-search-loading-content {
        gap: 12px;
    }
    
    .loading-dots {
        gap: 4px;
    }
    
    .loading-dot {
        width: 8px;
        height: 8px;
    }
    
    .youtube-search-input-group {
        margin-bottom: 12px;
    }
    
    .youtube-search-button {
        width: 35px;
        height: 35px;
        top: 7px;
        right: 7px;
    }
    
    .youtube-search-input {
        padding: 12px 45px 12px 15px;
        height: 48px;
        font-size: 16px; /* Pastikan font size cukup besar untuk mobile */
    }
}

@media (max-width: 480px) {
    .youtube-search-loading {
        padding: 20px 10px;
        margin-top: 5px;
    }
    
    .youtube-search-loading-content {
        gap: 10px;
    }
    
    .loading-dots {
        gap: 3px;
    }
    
    .loading-dot {
        width: 6px;
        height: 6px;
    }
    
    .youtube-search-button {
        width: 32px;
        height: 32px;
        top: 9px;
        right: 9px;
    }
    
    .youtube-search-input {
        padding: 10px 40px 10px 12px;
        height: 45px;
        font-size: 14px;
    }
    
    .youtube-search-container {
        padding: 15px;
        margin: 10px;
    }
}

/* SISANYA TETAP SAMA... */

.youtube-search-results {
    margin-top: 20px;
    transition: all 0.3s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.youtube-search-results h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #ffff00;
    padding-bottom: 8px;
    animation: fadeIn 0.5s ease-out;
}

.youtube-result-item {
    display: flex;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 6px;
    transition: all 0.3s ease-out;
    background: #000;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    box-sizing: border-box;
}

.youtube-result-item:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 0, 0.3);
    transform: translateY(-2px);
    border-color: #ffff00;
}

.youtube-thumb {
    flex: 0 0 180px;
    margin-right: 12px;
}

.youtube-thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease-out;
    border: 1px solid #fff;
}

.youtube-result-item:hover .youtube-thumb img {
    transform: scale(1.05);
    border-color: #ffff00;
}

.youtube-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.youtube-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
}

.youtube-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-out;
}

.youtube-title a:hover {
    color: #ffff00;
}

.youtube-channel {
    color: #ccc;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
}

.youtube-views {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 12px;
}

.youtube-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.youtube-play-button,
.youtube-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #ffff00;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease-out;
    cursor: pointer;
    border: 1px solid transparent;
    font-weight: bold;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.youtube-play-button:hover,
.youtube-download-button:hover {
    background: #000000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
    transform: translateY(-1px);
}

.youtube-play-button:active,
.youtube-download-button:active {
    transform: translateY(0);
}

.youtube-search-error {
    text-align: center;
    padding: 20px;
    color: #ff6b6b;
    background: #330000;
    border-radius: 6px;
    border: 1px solid #ff4444;
    font-weight: 500;
    animation: slideIn 0.4s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.youtube-search-info {
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-style: italic;
    background: #111;
    border-radius: 6px;
    border: 1px dashed #ffff00;
    animation: slideIn 0.4s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.youtube-search-warning {
    background: #332200;
    border: 1px solid #ff9900;
    color: #ff9900;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    animation: slideIn 0.4s ease-out;
    width: 100%;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.youtube-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.youtube-modal.active {
    display: block;
}

.youtube-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    pointer-events: none;
    animation: fadeIn 0.3s ease-out;
}

.youtube-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 70%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 255, 0, 0.2);
    animation: modalAppear 0.3s ease-out;
    border: 1px solid #fff;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.youtube-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffff00;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
    font-weight: bold;
    border: 1px solid transparent;
    pointer-events: auto;
}

.youtube-modal-close:hover {
    background: #000000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
    transform: scale(1.1);
}

.youtube-modal-iframe-container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.youtube-modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-download-modal-content {
    max-width: 450px;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    animation: downloadModalAppear 0.3s ease-out;
    background: #000;
    border: 1px solid #fff;
}

@keyframes downloadModalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.youtube-download-content {
    padding: 25px;
    color: #fff;
    position: relative;
}

.youtube-download-content h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ffff00;
    padding-bottom: 10px;
}

.youtube-download-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 18px;
    background: #111;
    border-radius: 6px;
    border: 1px solid #333;
    transition: all 0.3s ease-out;
}

.youtube-download-preview img {
    width: 110px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #fff;
    transition: transform 0.3s ease-out;
}

.youtube-download-preview:hover img {
    transform: scale(1.05);
}

.youtube-download-info {
    flex: 1;
}

.youtube-download-info h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
}

.youtube-download-info div {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 4px;
}

.youtube-download-options {
    text-align: center;
}

.youtube-download-loading {
    padding: 30px;
    color: #fff;
    transition: all 0.3s ease-out;
}

.youtube-download-links {
    margin-top: 20px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.download-option {
    display: block;
    padding: 16px 35px;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-out;
    text-align: center;
    cursor: pointer;
    border: none;
    min-width: 220px;
    font-weight: bold;
}

.download-option:hover:not(:disabled) {
    background: #ffff00;
    border-color: #ffff00;
    transform: translateY(-2px);
    color: #000;
}

.download-option:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-preparing,
.download-processing,
.download-success,
.download-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-text {
    font-size: 12px;
    color: #ccc;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffff00, #ffeb3b);
    border-radius: 2px;
    transition: width 1s ease-out;
    width: 0%;
}

.download-option.preparing-download {
    background: #333 !important;
    border-color: #ffff00 !important;
    color: #fff !important;
    transform: none !important;
}

.download-success .success-icon {
    color: #44ff44;
    font-size: 18px;
    font-weight: bold;
}

.download-error .error-icon {
    color: #ff4444;
    font-size: 18px;
    font-weight: bold;
}

.download-success div:last-child,
.download-error div:last-child {
    font-size: 12px;
    text-align: center;
}

.download-option .loading-dots {
    margin-bottom: 6px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.download-option .loading-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: loadingDot 1.4s infinite ease-in-out both;
}

.download-option .loading-dot:nth-child(1) { animation-delay: -0.32s; }
.download-option .loading-dot:nth-child(2) { animation-delay: -0.16s; }
.download-option .loading-dot:nth-child(3) { animation-delay: 0s; }

.download-option.preparing-download:hover {
    background: #333 !important;
    color: #fff !important;
    cursor: not-allowed;
}

.download-option.disabled-by-download {
    opacity: 0.5;
    cursor: not-allowed;
    background: #333 !important;
    border-color: #555 !important;
    color: #888 !important;
    transform: none !important;
}

.download-option.disabled-by-download:hover {
    background: #333 !important;
    border-color: #555 !important;
    color: #888 !important;
    transform: none !important;
}

@keyframes disabledPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.7; }
    100% { opacity: 0.5;
    }
}

.download-option.disabled-by-download {
    animation: disabledPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.download-success .success-icon {
    animation: successPulse 0.5s ease-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.download-error .error-icon {
    animation: errorShake 0.5s ease-out;
}

.download-format {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.download-quality {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 3px;
}

.download-option:hover .download-quality {
    color: #000;
}

.download-size {
    font-size: 12px;
    color: #aaa;
}

.download-option:hover .download-size {
    color: #000;
}

.download-option.quality-high {
    border-left: 4px solid #44ff44;
}

.youtube-download-progress {
    margin-top: 20px;
    padding: 20px;
    background: #111;
    border-radius: 6px;
    border: 1px solid #333;
    transition: all 0.3s ease-out;
}

.youtube-download-loading,
.youtube-download-complete,
.youtube-download-error {
    text-align: center;
    transition: all 0.3s ease-out;
}

.youtube-download-loading .loading-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
}

.youtube-download-loading .loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffff00;
    animation: loadingDot 1.4s infinite ease-in-out both;
}

.progress-text {
    font-size: 16px;
    font-weight: bold;
    color: #ffff00;
    margin-bottom: 8px;
    transition: all 0.3s ease-out;
}

.progress-details {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    transition: all 0.3s ease-out;
}

.download-success {
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    color: #44ff44;
    margin-bottom: 15px;
    animation: successPulse 2s infinite;
}

.success-message {
    font-size: 18px;
    font-weight: bold;
    color: #44ff44;
    margin-bottom: 10px;
}

.success-details {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.download-error {
    padding: 20px;
}

.error-icon {
    font-size: 48px;
    color: #ff4444;
    margin-bottom: 15px;
    animation: errorShake 0.5s ease-out;
}

.error-message {
    font-size: 16px;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 10px;
}

.error-details {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.youtube-cancel-modal-content {
    max-width: 400px;
    height: auto;
    animation: downloadModalAppear 0.3s ease-out;
    background: #000;
    border: 1px solid #fff;
}

.youtube-cancel-content {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.youtube-cancel-content h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #fff;
    border-bottom: 1px solid #ffff00;
    padding-bottom: 10px;
}

.cancel-message {
    margin-bottom: 25px;
    line-height: 1.5;
}

.cancel-message p {
    margin: 0 0 10px 0;
}

.cancel-warning {
    color: #ff6b6b;
    font-size: 14px;
    font-style: italic;
}

.cancel-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cancel-confirm-button,
.cancel-cancel-button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-out;
    min-width: 140px;
}

.cancel-confirm-button {
    background: #ff4444;
    color: #fff;
}

.cancel-confirm-button:hover {
    background: #cc0000;
    transform: translateY(-1px);
}

.cancel-cancel-button {
    background: #ffff00;
    color: #000;
}

.cancel-cancel-button:hover {
    background: #000000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
    transform: translateY(-1px);
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* MEDIA QUERIES UNTUK RESPONSIVITAS LAINNYA */
@media (max-width: 768px) {
    .youtube-result-item {
        flex-direction: column;
    }
    
    .youtube-thumb {
        flex: none;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .youtube-modal-content {
        width: 95%;
        height: 60%;
    }
    
    .youtube-modal-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .youtube-action-buttons {
        flex-direction: column;
    }
    
    .youtube-play-button,
    .youtube-download-button {
        min-width: auto;
        width: 100%;
    }
    
    .youtube-download-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .youtube-download-preview img {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin: 0 auto;
    }
    
    .download-buttons {
        display: flex;
        justify-content: center;
    }
    
    .youtube-download-content {
        padding: 20px;
    }
    
    .youtube-search-container {
        padding: 15px;
        margin: 10px;
    }
    
    .download-option {
        padding: 14px 25px;
        min-width: 200px;
    }
    
    .cancel-buttons {
        flex-direction: column;
    }
    
    .cancel-confirm-button,
    .cancel-cancel-button {
        min-width: auto;
        width: 100%;
    }
    
    .youtube-cancel-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .youtube-modal-content {
        width: 98%;
        height: 50%;
    }
    
    .youtube-download-content {
        padding: 15px;
    }
    
    .youtube-download-preview {
        padding: 15px;
    }
    
    .download-option {
        padding: 12px 20px;
        min-width: 180px;
    }
    
    .youtube-result-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .youtube-title {
        font-size: 14px;
    }
    
    .youtube-search-results h3 {
        font-size: 18px;
    }
}

body .youtube-search-container * {
    box-sizing: border-box;
}

.youtube-search-container input,
.youtube-search-container button,
.youtube-search-container .youtube-result-item {
    font-family: Arial, sans-serif;
}

/* HAPUS SEMUA OUTLINE UNTUK TOMBOL PENCARIAN - FIX TOTAL */
.youtube-search-button:focus,
.youtube-search-button:active,
.youtube-search-button:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    color: #ffff00 !important;
    transform: none !important;
}

.youtube-modal {
    z-index: 9999;
}

.youtube-modal-overlay {
    z-index: 1;
}

.youtube-modal-content {
    z-index: 2;
}

.youtube-modal-close {
    z-index: 3;
}

.youtube-download-loading:not(:first-child),
.youtube-download-complete:not(:first-child),
.youtube-download-error:not(:first-child) {
    display: none;
}

.youtube-download-loading:first-child,
.youtube-download-complete:first-child,
.youtube-download-error:first-child {
    display: block;
}

.youtube-search-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.youtube-modal-content,
.youtube-download-modal-content,
.youtube-cancel-modal-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
}

/* FIX UNTUK TOMBOL PENCARIAN - DI DALAM INPUT */
#youtube-search-form .youtube-search-button,
form#youtube-search-form .youtube-search-button,
.youtube-search-container .youtube-search-form .youtube-search-button {
    background: transparent !important;
    border: none !important;
    color: #ffff00;
}

#youtube-search-form .youtube-search-button:hover,
form#youtube-search-form .youtube-search-button:hover,
.youtube-search-container .youtube-search-form .youtube-search-button:hover,
#youtube-search-form .youtube-search-button:focus,
form#youtube-search-form .youtube-search-button:focus,
.youtube-search-container .youtube-search-form .youtube-search-button:focus {
    background: transparent !important;
    border: none !important;
    color: #ffff00 !important;
    outline: none !important;
    box-shadow: none !important;
}

.youtube-play-button:hover,
.youtube-download-button:hover {
    background: #000000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
}

@media print {
    .youtube-search-button,
    .youtube-play-button,
    .youtube-download-button,
    .youtube-modal-close,
    .download-option,
    .cancel-confirm-button,
    .cancel-cancel-button {
        display: none !important;
    }
    
    .youtube-modal {
        display: none !important;
    }
    
    .youtube-search-container {
        background: #fff !important;
        color: #000 !important;
    }
    
    .youtube-result-item {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    .youtube-title {
        color: #000 !important;
    }
}