.main-satellite-header {
    background: var(--gradient-card);
    padding: 15px;
    border: none;
    border-radius: 8px 8px 0 0;
    opacity: 0.92;
}
.satellite-controls {
    background-color: transparent;
    border-radius: 10px;
    padding: 15px;
    margin: 15px auto 0;
    max-width: 600px;
    box-shadow: none;
}
.satellite-controls .btn {
    font-size: 1.2rem;
    width: 48px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 2px !important;
    border: 1px solid #dee2e6;
    background-color: white;
    color: #6c757d;
}

/* Style just the play button icon */
.satellite-controls #play i {
    color: #0d6efd;
}

.satellite-controls .btn:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: white;
}
.satellite-content-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.satellite-image-container {
    flex: 1;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

#satellite-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 600px;
}

.satellite-text-overlay {
    flex: 1;
    padding: 20px 0;
    max-width: 400px;
}

.product-title {
    color: var(--teal-dark);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .satellite-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .satellite-text-overlay {
        max-width: 100%;
        padding: 0;
    }
    
    .satellite-image-container {
        height: 400px;
    }
}

/* Remove grey background only from controls container */
.satellite-controls {
    background-color: transparent !important;
    box-shadow: none !important;
}


/* Match radar page card styling */
.card.shadow-sm {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
}
