﻿.ext-widget-container {
    text-align: center;
    background: #f8f9fd;
    padding: 12px;
    border-radius: 12px;
    max-width: 520px; /* Increased width to fit all buttons */
    margin: 20px auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.ext-widget-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.ext-widget-buttons {
    display: flex;
    justify-content: center;
    gap: 8px; /* Reduced gap for better alignment */
    flex-wrap: nowrap; /* Prevents buttons from wrapping to the next row */
}

    .ext-widget-buttons a {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px; /* Slightly reduced padding */
        border-radius: 20px; /* Adjusted for better fit */
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: 0.3s;
        white-space: nowrap; /* Ensures button text stays in one line */
    }

.ext-widget-chrome-btn {
    background: #fff;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.ext-widget-firefox-btn {
    background: #fff;
    color: #FF9500;
    border: 2px solid #FF9500;
}

.ext-widget-edge-btn {
    background: #fff;
    color: #0078D7;
    border: 2px solid #0078D7;
}

.ext-widget-chrome-btn:hover {
    background: #4285F4;
    color: #fff;
}

.ext-widget-firefox-btn:hover {
    background: #FF9500;
    color: #fff;
}

.ext-widget-edge-btn:hover {
    background: #0078D7;
    color: #fff;
}

.ext-widget-icon {
    width: 16px;
    height: 16px;
}
