/**
 * Authentication & Modal Styles
 */

* {
  font-family: 'Montserrat', sans-serif !important;
}

/* ==================== SIDEBAR USER PROFILE ==================== */
#sidebar-user-profile {
    background: #e8e8e8;
    margin: 0;
    padding: 0;
}

#sidebar-user-profile #user-menu {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

#sidebar-user-profile .user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px;
    background: #ececec;
    cursor: pointer;
    transition: background 0.2s;
    width: calc(100% + 10px);
    position: relative;
    margin: -20px;
}

#sidebar-user-profile .user-info:hover {
    background: #d5d5d5;
}

#sidebar-user-profile #user-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: center;
}

#sidebar-user-profile .user-role-badge {
    padding: 4px 12px;
    background: #0d265e;
    color: white;
    border-radius: 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

#sidebar-user-profile .user-menu-dropdown {
    position: absolute;
    top: 75px;
    right: 0;
    margin-top: 0;
    background: #d5d5d5;
    border-radius: 0;
    box-shadow: none;
    width: calc(100% + 40px);
    left: -20px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    z-index: 1;
}

#sidebar-user-profile #user-menu:hover .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}

#sidebar-user-profile #login-btn {
    width: calc(100% - 40px);
    margin: 20px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    position: relative;
    left: 0px;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #e6007e;
    position: relative;
    left: 2px;
    transition: all 0.2s;
}

#sidebar-user-profile .dropdown-item:hover {
    background: #e0e0e0;
}

.dropdown-item:first-child {
    border-radius: 0;
}

.dropdown-item:last-child {
    border-radius: 0;
}

.dropdown-item.logout {
    color: #e6007e;
}

.dropdown-item svg {
    flex-shrink: 0;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    padding: 10px 24px;
    background: #0d265e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover:not(:disabled) {
    background: #081639;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 38, 94, 0.3);
}

.btn-primary:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    padding: 10px 24px;
    background: #757575;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #616161;
}

.btn-load {
    padding: 8px 16px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-load:hover:not(:disabled) {
    background: #388e3c;
    transform: translateY(-1px);
}

.btn-load:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
}

.btn-delete {
    padding: 8px 16px;
    background: #e53935;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete:hover {
    background: #c62828;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* Select/Dropdown */
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

select:focus {
    outline: none;
    border-color: #0d265e;
    box-shadow: 0 0 0 3px rgba(13, 38, 94, 0.1);
}

/* ==================== MODALS ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
}

/* Modal sovrapposti - incrementa z-index per permettere sovrapposizioni */
.modal.active ~ .modal.active {
    z-index: 10001;
}

#create-user-modal.active {
    z-index: 10002;
}

h2#modal-title {
    text-align: center;
}

/* ==================== LOGIN FULLPAGE ==================== */
/* Modal login obbligatorio a pagina intera */
#login-modal.required {
    background: url('/media/sfondo_login.jpg') center center / cover no-repeat;
    backdrop-filter: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#login-modal.required .modal-content {
    max-width: 1200px;
    width: 90%;
    padding: 0;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: auto;
}

#login-modal.required .login-left-panel {
    background: linear-gradient(135deg, #0d265e 0%, #1a3a7a 100%);
    padding: 60px 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

/* Accenti fucsia decorativi */
#login-modal.required .login-left-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 0, 126, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

#login-modal.required .login-left-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 0, 126, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

#login-modal.required .login-left-panel .modal-logo {
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

#login-modal.required .login-left-panel .modal-logo img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

#login-modal.required .login-presentation h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

#login-modal.required .login-presentation p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

#login-modal.required .login-presentation ul {
    position: relative;
    z-index: 1;
}

#login-modal.required .login-right-panel {
    background: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Non mostrare logo in right panel quando required */
#login-modal.required .login-right-panel .modal-logo {
    display: none;
}

#login-modal.required .login-right-panel h2 {
    margin-top: 0;
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Responsive per fullpage login */
@media (max-width: 900px) {
    #login-modal.required .modal-content {
        grid-template-columns: 1fr;
        max-width: 90%;
        width: 90%;
        min-height: auto;
        border-radius: 12px;
    }
    
    #login-modal.required .login-left-panel {
        padding: 30px 25px;
        min-height: auto;
        gap: 20px;
    }
    
    #login-modal.required .login-left-panel .modal-logo img {
        width: 150px;
    }
    
    #login-modal.required .login-presentation h1 {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    #login-modal.required .login-presentation p {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
    
    #login-modal.required .login-presentation ul {
        font-size: 14px;
        line-height: 1.6;
    }
    
    #login-modal.required .login-right-panel {
        padding: 30px 25px;
    }
    
    #login-modal.required .login-right-panel h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    #login-modal.required .modal-content {
        max-width: 90%;
        width: 90%;
        border-radius: 12px;
    }
    
    #login-modal.required .login-left-panel {
        padding: 25px 20px;
        gap: 15px;
    }
    
    #login-modal.required .login-left-panel .modal-logo img {
        width: 130px;
    }
    
    #login-modal.required .login-presentation h1 {
        font-size: 24px;
        margin: 0 0 12px 0;
    }
    
    #login-modal.required .login-presentation p {
        font-size: 13px;
        margin: 0 0 8px 0;
    }
    
    #login-modal.required .login-presentation p strong {
        display: block;
        margin-bottom: 8px;
    }
    
    #login-modal.required .login-presentation ul {
        font-size: 13px;
        line-height: 1.5;
        margin: 10px 0 0 0;
    }
    
    #login-modal.required .login-right-panel {
        padding: 25px 20px;
    }
    
    #login-modal.required .login-right-panel h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    #login-modal.required .login-right-panel .form-group label {
        font-size: 13px;
    }
    
    #login-modal.required .login-right-panel .form-group input {
        font-size: 14px;
        padding: 10px;
    }
    
    #login-modal.required .login-right-panel .btn-primary {
        padding: 12px;
        font-size: 15px;
    }
    
    #login-modal.required .login-right-panel .form-footer {
        font-size: 13px;
    }
    
    /* Box info accesso */
    #login-modal.required .login-right-panel > div[style*="background"] {
        padding: 12px !important;
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    
    #login-modal.required .login-right-panel > div[style*="background"] p {
        font-size: 13px !important;
    }
}

/* Modal normale (non required) */
.modal:not(.required) {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: slideUp 0.3s;
}

.modal-large {
    max-width: 800px;
}

.modal-xlarge {
    max-width: 1200px;
}

/* Logo nel modal di login */
.modal-logo {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-logo img {
    max-width: 200px;
    height: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 28px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    margin: 20px 0;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ==================== FORMS ==================== */
.auth-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6007e;
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.1);
}

.form-group input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #e6007e;
}

.toggle-password.active {
    color: #e6007e;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-footer a {
    color: #e6007e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.form-footer a:hover {
    color: #b30061;
    text-decoration: underline;
}

/* ==================== MESSAGES ==================== */
.error-message {
    padding: 12px;
    background: #ffebee;
    color: #c62828;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    padding: 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
    display: none;
}

.success-message.show {
    display: block;
}

/* ==================== PROFILE SECTIONS ==================== */
.profile-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.profile-section h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ==================== CONFIGURATIONS GRID ==================== */
.configs-filter {
    margin-bottom: 20px;
}

.configs-filter input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.config-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
}

.config-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.config-thumbnail {
    width: 100%;
    height: 150px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.config-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-thumbnail-placeholder {
    color: #999;
    font-size: 48px;
}

.config-info {
    padding: 10px;
}

.config-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.config-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.config-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.config-actions button {
    flex: 1;
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.config-actions .btn-load {
    background: #3275c9;
    color: white;
}

.config-actions .btn-load:hover {
    background: #2560a8;
}

.config-actions .btn-delete {
    background: #e53935;
    color: white;
}

.config-actions .btn-delete:hover {
    background: #c62828;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-data p {
    font-size: 16px;
    margin: 0;
}

/* ==================== ADMIN PANEL ==================== */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.admin-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.admin-tab.active {
    color: #3275c9;
    border-bottom-color: #3275c9;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-toolbar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-toolbar input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.admin-toolbar .btn-primary {
    white-space: nowrap;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table thead {
    background: #f5f5f5;
}

.admin-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-table tr:hover {
    background: #fafafa;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.inactive {
    background: #fff3e0;
    color: #ef6c00;
}

.status-badge.suspended {
    background: #ffebee;
    color: #c62828;
}

.role-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    background: #e3f2fd;
    color: #1565c0;
}

.role-badge.admin {
    background: #f3e5f5;
    color: #6a1b9a;
}

.role-badge.superadmin {
    background: #fce4ec;
    color: #c2185b;
}

.action-btn {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
    transition: all 0.2s;
}

.action-btn.edit {
    background: #3275c9;
    color: white;
}

.action-btn.edit:hover {
    background: #2560a8;
}

.action-btn.delete {
    background: #e53935;
    color: white;
}

.action-btn.delete:hover {
    background: #c62828;
}

.action-btn.reset {
    background: #ff9800;
    color: white;
}

.action-btn.reset:hover {
    background: #f57c00;
}

.action-btn.approve {
    background: #4caf50;
    color: white;
}

.action-btn.approve:hover {
    background: #388e3c;
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

.no-data p {
    margin: 0;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 15px 0;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #0d265e;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 36px;
}

.pagination button:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #0d265e;
}

.pagination button.active {
    background: #0d265e;
    color: white;
    border-color: #0d265e;
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination .page-info {
    padding: 0 12px;
    font-size: 14px;
    color: #666;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    #main-header {
        padding: 0 10px;
    }
    
    #main-header h1 {
        font-size: 16px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .configs-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        overflow-x: auto;
    }
    
    .admin-table {
        font-size: 12px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px;
    }
}

/* ==================== CONFIGURAZIONI LISTA ==================== */
.configs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.config-row {
    display: grid;
    grid-template-columns: 75px 2fr 85px 85px 85px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.2s;
}

.config-row:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.config-thumbnail-small {
    width: 75px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-placeholder {
    font-size: 32px;
}

.config-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.config-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.config-description {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.config-modules,
.config-date {
    font-size: 14px;
    color: #666;
}

.config-row-actions {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

#load-config-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

#load-config-message.show {
    display: block;
}

#load-config-message.error {
    background: #ffebee;
    color: #c62828;
}

@media (max-width: 768px) {
    .config-row {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }
    
    .config-modules,
    .config-date {
        display: none;
    }
    
    .config-row-actions {
        grid-column: 1 / -1;
    }
}

/* ==================== CONFIGS TABS ==================== */
.configs-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.configs-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.configs-tab:hover {
    color: #3275c9;
}

.configs-tab.active {
    color: #3275c9;
    border-bottom-color: #3275c9;
}

.configs-tab-content {
    display: none;
}

.configs-tab-content.active {
    display: block;
}

.config-owner {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-style: italic;
}
