body {
    background-color: #212529;
    color: #fff;
    padding: 20px;
}

.search-container {
    background-color: #343a40;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.engine-btn {
    background-color: #495057;
    color: #ffc107;
    font-weight: 600;
    border: 1px solid #6c757d;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engine-btn:hover {
    background-color: #343a40;
    border-color: #ffc107;
    transform: translateY(-2px);
}

.engine-btn.clicked {
    background-color: #198754;
    border-color: #20c997;
    color: white;
}

.nav-tabs .nav-link {
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-right: 5px;
    border-radius: 10px;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #fd7e14, #ffc107);
    color: white;
    border-color: #fd7e14;
}

.search-btn {
    background: linear-gradient(45deg, #fd7e14, #ffc107);
    border: none;
    color: white;
    font-weight: 600;
}

.copy-btn {
    background-color: #6c757d;
    border: none;
    color: white;
}

input.form-control {
    background-color: #495057;
    border: 1px solid #6c757d;
    color: white;
}

input.form-control:focus {
    background-color: #495057;
    color: white;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Estilos para el iframe y notas */
.iframe-container {
    border-radius: 8px;
    overflow: hidden;
    background-color: #495057;
}

#notesTextarea {
    background-color: #495057;
    color: white;
    border: 1px solid #6c757d;
    resize: none;
}

#notesTextarea:focus {
    background-color: #495057;
    color: white;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Social Media Buttons */
.social-btn {
    min-width: auto;
    padding: 0.375rem 0.75rem;
    background-color: #495057;
    color: #ffc107;
    border: 1px solid #6c757d;
    transition: all 0.2s ease;
}

@media (max-width: 576px) {
    .social-btn {
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
    }
}

.social-btn:hover {
    background-color: #343a40;
    border-color: #ffc107;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 767px) {
    .social-links .d-flex {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-btn {
        flex: 0 0 calc(50% - 5px);
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.carousel-slide {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    width: 33.333%;
    height: auto;
    object-fit: cover;
    max-height: 400px; /* Adjust this value as needed */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* Make carousel responsive */
@media (max-width: 768px) {
    .carousel-image {
        max-height: 250px;
    }
    
    .carousel-button {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        max-height: 180px;
    }
    
    .carousel-button {
        padding: 5px 8px;
    }
}

