/* Basic styling for the plugin */
.welcome-screen {
    margin-bottom: 20px;
}

.database-info {
    margin-bottom: 20px;
}

.nav-tab-wrapper {
    margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Button styling */
.button {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.button-primary {
    background-color: #0073aa;
    color: #fff;
}

.button-primary:hover {
    background-color: #005177;
}

.button-danger {
    background-color: #dc3232;
    color: #fff;
}

.button-danger:hover {
    background-color: #a00;
}

/* Popup modal styling */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.popup-content h3 {
    margin-top: 0;
}

.popup-content pre {
    
    padding: 10px;
    border-radius: 3px;
    overflow-x: auto;
}

.popup-content #close-popup {
    margin-top: 10px;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}