/* PANEL ADMIN FRONTEND */
.gef-admin-panel {
    background: #ffffff;
    border: 2px solid #2196F3;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.gef-admin-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
}

.gef-admin-panel-header h4 {
    margin: 0;
    font-size: 18px;
    color: #2196F3;
    font-weight: 600;
}

.gef-admin-panel-toggle {
    margin-left: auto;
    background: #2196F3;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.gef-admin-panel-body {
    padding-top: 15px;
}

.gef-admin-field {
    margin-bottom: 28px;
}

.gef-admin-field label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.gef-admin-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    font-family: inherit;
}

.gef-admin-select:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.gef-admin-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gef-admin-apply-btn {
    background: #4CAF50 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3) !important;
    text-transform: none !important;
}

.gef-admin-apply-btn:hover {
    background: #45a049 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4) !important;
}

.gef-admin-status {
    font-weight: 600;
    font-size: 15px;
}

.gef-admin-status.success {
    color: #4CAF50;
}

.gef-admin-status.error {
    color: #f44336;
}
