/* ==========================================================================
   CBDMania Core – Admin Panel Styling (v1.1 – Cu Tab-uri Premium)
   ========================================================================== */

/* LAYOUT GENERAL */
.cbdmania-admin-wrap {
    max-width: 1100px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* HEADER */
.cbdmania-header {
    background: linear-gradient(135deg, #b67e53 0%, #8c5a35 100%);
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(182, 126, 83, 0.3);
}
.cbdmania-header h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}
.cbdmania-version {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 10px;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
}
.cbdmania-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff;
}

/* ==========================================================================
   TAB-URI NAVIGARE
   ========================================================================== */
.cbdmania-tabs-nav {
    display: flex;
    gap: 4px;
    background: #f0f0f1;
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.cbdmania-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: #646970;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cbdmania-tab-btn:hover {
    background: rgba(255,255,255,0.6);
    color: #1d2327;
}
.cbdmania-tab-btn.active {
    background: #ffffff;
    color: #b67e53;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.cbdmania-tab-btn .tab-icon {
    font-size: 16px;
    line-height: 1;
}
.cbdmania-tab-btn .tab-text {
    line-height: 1;
}

/* CONȚINUT TAB-URI */
.cbdmania-tab-content {
    display: none;
}
.cbdmania-tab-content.active {
    display: block;
}

/* ==========================================================================
   SECȚIUNI
   ========================================================================== */
.cbdmania-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 10px 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-top: none;
}
.cbdmania-tab-content .cbdmania-section {
    border-radius: 0 0 10px 10px;
    margin-top: 0;
}
.cbdmania-custom-section {
    border-radius: 10px !important;
    border-top: 1px solid #e0e0e0 !important;
    margin-top: 20px;
}
.cbdmania-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 5px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.cbdmania-section-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}
.cbdmania-section-desc code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #b67e53;
}

/* ==========================================================================
   GRID MODULE
   ========================================================================== */
.cbdmania-modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* CARD MODUL */
.cbdmania-module-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}
.cbdmania-module-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cbdmania-module-card.module-active {
    border-left: 4px solid #5da035;
    background: #fafff5;
}
.cbdmania-module-card.module-inactive {
    border-left: 4px solid #ccc;
    background: #fafafa;
    opacity: 0.75;
}
.cbdmania-module-card.module-inactive:hover {
    opacity: 1;
}
.cbdmania-module-card.custom-module.module-active {
    border-left-color: #b67e53;
    background: #fffaf5;
}

/* INFO MODUL */
.module-info {
    flex: 1;
    padding-right: 20px;
}
.module-label {
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 4px 0;
}
.module-desc {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
.module-filename {
    display: inline-block;
    margin-top: 5px;
    font-size: 11px;
    color: #b67e53;
    background: #fff5ee;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: monospace;
}

/* ==========================================================================
   TOGGLE SWITCH
   ========================================================================== */
.module-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.toggle-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    min-width: 28px;
}
.cbdmania-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.cbdmania-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}
.slider.round {
    border-radius: 26px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
input:checked + .slider {
    background-color: #5da035;
}
input:checked + .slider:before {
    transform: translateX(24px);
}
.custom-module input:checked + .slider {
    background-color: #b67e53;
}

/* ==========================================================================
   DROPDOWN SELECT (Protecție Copiere)
   ========================================================================== */
.module-dropdown {
    min-width: 320px;
}
.cbdmania-select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #1d2327;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: auto;
}
.cbdmania-select:hover {
    border-color: #b67e53;
}
.cbdmania-select:focus {
    border-color: #b67e53;
    outline: none;
    box-shadow: 0 0 0 3px rgba(182, 126, 83, 0.15);
}
.module-active .cbdmania-select {
    border-color: #5da035;
}

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.cbdmania-empty-custom {
    text-align: center;
    padding: 30px 20px;
    background: #fafafa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    color: #999;
}
.cbdmania-empty-custom p {
    margin: 5px 0;
    font-size: 13px;
}
.cbdmania-empty-custom code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #b67e53;
}

/* ==========================================================================
   BUTON SALVARE
   ========================================================================== */
.cbdmania-admin-wrap .button-primary {
    background: #b67e53 !important;
    border-color: #a06d4a !important;
    color: #ffffff !important;
    font-size: 15px !important;
    padding: 8px 30px !important;
    height: auto !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 5px rgba(182, 126, 83, 0.3) !important;
    transition: all 0.3s ease !important;
}
.cbdmania-admin-wrap .button-primary:hover {
    background: #8c5a35 !important;
    border-color: #7a4e2e !important;
    box-shadow: 0 4px 10px rgba(182, 126, 83, 0.4) !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.cbdmania-footer-info {
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    color: #aaa;
    font-size: 12px;
}
.cbdmania-footer-info a {
    color: #b67e53;
    text-decoration: none;
}
.cbdmania-footer-info a:hover {
    text-decoration: underline;
}

/* NOTICE */
.cbdmania-admin-wrap .notice {
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 782px) {
    .cbdmania-admin-wrap {
        margin: 10px;
    }
    .cbdmania-header {
        padding: 20px;
    }
    .cbdmania-header h1 {
        font-size: 22px;
    }
    .cbdmania-tabs-nav {
        gap: 3px;
        padding: 4px;
    }
    .cbdmania-tab-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 4px;
    }
    .cbdmania-tab-btn .tab-text {
        display: none;
    }
    .cbdmania-tab-btn .tab-icon {
        font-size: 18px;
    }
    .cbdmania-section {
        padding: 15px;
    }
    .cbdmania-module-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .module-toggle {
        align-self: flex-end;
    }
    .module-dropdown {
        min-width: 100%;
        align-self: stretch;
    }
}
