/* Embed-specific styles */

/* Hide the radar info panel for embed */
.radar-info {
    display: none !important;
}

/* Hide the draggable toolbar for embed */
.radar-toolbar {
    display: none !important;
}

/* Hide aircraft list for embed */
.aircraft-list-container {
    display: none !important;
}

/* Hide refresh indicator for embed */
.refresh-indicator {
    display: none !important;
}

/* Simplified embed controls */
.embed-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    backdrop-filter: blur(10px);
}

.embed-btn {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary-color);
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.embed-btn:hover {
    background: var(--hover-color);
    box-shadow: 0 0 8px var(--shadow-color);
    transform: translateY(-1px);
}

.embed-btn:active {
    transform: translateY(0);
    box-shadow: 0 0 4px var(--shadow-color);
}

.embed-btn i {
    pointer-events: none;
}

/* Separator between controls */
.embed-controls .embed-btn:last-child {
    border-top: 1px solid var(--shadow-color);
    padding-top: 12px;
    margin-top: 4px;
}

/* Highlight the open full radar button */
#embed-open-full {
    background: rgba(0, 100, 255, 0.2);
    border-color: #0088ff;
}

#embed-open-full:hover {
    background: rgba(0, 120, 255, 0.4);
    border-color: #00aaff;
}

/* Responsive adjustments for embed */
@media (max-width: 768px) {
    .embed-controls {
        right: 10px;
        top: 10px;
    }
    
    .embed-btn {
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
        padding: 8px;
    }
}
