/* Base admin styles */
:root {
    --GVDK-border-color: #ddd;
    --GVDK-text-color: #333;
    --GVDK-error-color: #dc3232;
    --GVDK-accent-color: #2271b1;
}

.wrap.GVDK-admin-wrap {
    margin: 20px;
}

.GVDK-admin-wrap h1 {
    margin-bottom: 20px;
}

/* Common form styles */
.button-group {
    display: flex;
    gap: 10px;
}

.notice {
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 4px;
}

.notice-error {
    border-left: 4px solid var(--GVDK-error-color);
}

.notice-success {
    border-left: 4px solid #46b450;
}

/* Tab Navigation */
.GVDK-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--GVDK-border-color);
}

.GVDK-tab-button {
    padding: 10px 20px;

    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.GVDK-tab-button.active {
    border-bottom-color: var(--GVDK-accent-color);
    color: var(--GVDK-accent-color);
}

/* Modal Styles */
.GVDK-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.GVDK-modal-content {
    position: relative;
    margin: 50px auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 4px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Status Badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.pending {
    color: #856404;
}

.status-badge.published {
    color: #155724;
}

/* App Tags */
.app-tag {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px;
    border-radius: 3px;
    background: var(--GVDK-accent-color);
    color: #fff;
    font-size: 12px;
}
