/* SE Country Debug Styling */
.se-country-debug-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.se-country-debug-container h2 {
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007cba;
}

.se-debug-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #007cba;
}

.se-debug-section h3 {
    color: #007cba;
    margin-top: 0;
    margin-bottom: 15px;
}

.se-debug-code {
    background: #ffffff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.se-debug-code h4 {
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.se-debug-code pre {
    background: #3d3d3d;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    overflow-x: auto;
    margin: 5px 0;
    border: 1px solid #e0e0e0;
}

.se-debug-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.se-debug-actions .button {
    padding: 10px 15px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.se-debug-actions .button:hover {
    background: #005a87;
}

/* Product sample styling */
.se-debug-section div[style*="border-left: 3px solid #007cba"] {
    border-radius: 4px;
}

.se-debug-section div[style*="background: #f0f0f0"] {
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .se-country-debug-container {
        margin: 10px;
        padding: 15px;
    }
    
    .se-debug-section {
        padding: 15px;
    }
    
    .se-debug-actions {
        flex-direction: column;
    }
    
    .se-debug-code pre {
        font-size: 11px;
    }
} 

.se-debug-code > div {
    background: #3d3d3d !important;
}