/* Reset and Base Styles */
.digiflash-admin-wrap {
    display: flex;
    flex-direction: column;
    margin: 1.25rem 1.25rem 0 0;
    color: #1e1e1e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
body.rtl .digiflash-admin-wrap {
    margin-right: 1.25rem;
    margin-left: 0;
}
.digiflash-admin-wrap * {
    box-sizing: border-box;
}
/* Admin Header */
.digiflash-admin-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.875rem;
    padding-bottom: 0.9375rem;
    border-bottom: 0.0625rem solid #e2e4e7;
}
.digiflash-admin-logo {
    display: flex;
}
/* Admin Tabs */
.digiflash-admin-tabs {
    display: flex;
}
.digiflash-admin-tabs ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        margin: 0;
    }
.digiflash-admin-tabs ul li {
            margin: 0;
        }
.digiflash-admin-tabs a {
        position: relative;
        display: inline-flex;
        padding: 0.625rem 1.125rem;
        text-decoration: none;
        color: #50575e;
        font-weight: 500;
        border-radius: 0.375rem;
        transition: all 0.2s ease;
    }
.digiflash-admin-tabs a:hover {
            color: #e74c3c;
            background-color: rgba(234, 102, 102, 0.05);
            outline: none;
            box-shadow: none;
        }
.digiflash-admin-tabs a.active {
            color: #fff;
            background-color: #e74c3c;
            box-shadow: 0 0.1875rem 0.375rem rgba(234, 102, 102, 0.25);
        }
.digiflash-admin-tabs a .digiflash-pro-badge {
            position: absolute;
            top: -6px;
            right: -2px;
            background-color: #f59e0b;
            color: #ffffff;
            padding: 0.2rem 0.25rem 0.2rem 0.25rem;
            border-style: none;
            border-radius: 4px 4px 4px 4px;
            box-shadow: none;
            font-size: 0.5rem;
            font-weight: 600;
            font-style: normal;
            text-transform: uppercase;
            line-height: 1.2em;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            z-index: 1;
        }
/* Admin Content */
.digiflash-admin-content {
    display: flex;
    gap: 1.875rem;
}
/* Admin columns */
.digiflash-admin-col {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.digiflash-admin-first {
    min-width: 600px;
    flex: 1;
}
.digiflash-admin-second {
    max-width: 40rem;
}
/* Admin Sections */
.digiflash-admin-section {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 0.0625rem solid #f0f0f1;
    transition: all 0.2s ease;
}
.digiflash-admin-section:hover {
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
        transform: translateY(-0.0625rem);
    }
.digiflash-section-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 0.0625rem solid #f0f0f0;
    background: linear-gradient(
        to right,
        rgba(234, 102, 102, 0.03),
        rgba(234, 102, 102, 0)
    );
}
.digiflash-section-header h2 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
    }
.digiflash-section-header h2.has-icon {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.digiflash-section-header h2.has-icon svg {
                width: 1.5rem;
                height: 1.5rem;
            }
.digiflash-section-header p {
        margin: 0.5rem 0 0;
        color: #646970;
        font-size: 0.875rem;
        line-height: 1.5;
    }
/* Actions Section */
.digiflash-actions-container {
    padding: 1.75rem;
}
.digiflash-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
}
.digiflash-action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 0.0625rem solid #e2e4e7;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.digiflash-action-card:hover {
        border-color: #e74c3c;
        box-shadow: 0 0.5rem 1.5rem rgba(234, 102, 102, 0.15);
        transform: translateY(-0.125rem);
        color: inherit;
    }
.digiflash-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(234, 102, 102, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
    color: #e74c3c;
    transition: all 0.3s ease;
}
.digiflash-action-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        fill: currentColor;
    }
.digiflash-action-card:hover .digiflash-action-icon {
    background: #e74c3c;
    color: white;
    transform: scale(1.05);
}
.digiflash-action-content {
    flex: 1;
}
.digiflash-action-content h3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 0.25rem 0;
        color: #1e293b;
    }
.digiflash-action-content p {
        color: #64748b;
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.5;
    }
/* DigiFlash Pro Banner */
.digiflash-pro-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
}
.digiflash-pro-banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.digiflash-pro-banner-icon svg {
    fill: #fff;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.digiflash-pro-banner-content {
    flex: 1;
    min-width: 0;
}
.digiflash-pro-banner-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
}
.digiflash-pro-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}
.digiflash-pro-banner-action {
    flex-shrink: 0;
}
.digiflash-pro-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #e74c3c;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.digiflash-pro-banner-btn:hover {
    background: #fff8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #c0392b;
}
.digiflash-pro-banner-btn svg {
    transition: transform 0.3s ease;
}
.digiflash-pro-banner-btn:hover svg {
    transform: translateX(4px);
}
/* Responsive */
@media (max-width: 782px) {
    .digiflash-pro-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .digiflash-pro-banner-icon {
        width: 64px;
        height: 64px;
    }

    .digiflash-pro-banner-icon svg {
        width: 36px;
        height: 36px;
    }

    .digiflash-pro-banner-content h3 {
        font-size: 20px;
    }

    .digiflash-pro-banner-content p {
        font-size: 14px;
    }
}
/* Resources Section */
.digiflash-resource-card {
    background: #fff;
    border-radius: 0.5rem;
    border: 0.0625rem solid #f0f0f1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.digiflash-resource-card:hover {
        transform: translateY(-0.125rem);
        box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
        border-color: #e74c3c;
        color: inherit;
    }
.digiflash-resource-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.digiflash-resource-title h3 {
        flex: 1;
        margin: 0;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #333;
    }
.digiflash-resource-icon {
    background: rgba(234, 102, 102, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    flex-shrink: 0;
}
.digiflash-resource-icon svg {
        width: 1.25rem;
        height: 1.25rem;
        fill: currentColor;
    }
.digiflash-resource-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.digiflash-resource-content p {
        color: #666;
        font-size: 0.8125rem;
        margin: 0;
        line-height: 1.5;
    }
/* Promotional Content */
.digiflash-promo-container {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
}
.digiflash-promo-product {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.digiflash-promo-product:not(:last-child) {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 0.0625rem solid #f0f0f0;
    }
.digiflash-promo-logo {
    display: flex;
}
.digiflash-promo-logo a {
        display: flex;
    }
.digiflash-promo-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.digiflash-promo-content h3 {
        font-size: 1.125rem;
        font-weight: 600;
        margin: 0;
        color: #1e293b;
    }
.digiflash-promo-content p {
        color: #555;
        line-height: 1.6;
        margin: 0;
        font-size: 0.875rem;
    }
.digiflash-features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
.digiflash-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #475569;
        font-size: 0.8125rem;
        line-height: 1.5;
        margin: 0;
    }
.digiflash-features li svg {
            display: flex;
            width: 10px;
            height: auto;
            fill: #10b981;
        }
.digiflash-features li span {
            flex: 1;
        }
.digiflash-link-wrapper {
    display: inline-flex;
}
.digiflash-link-wrapper .digiflash-button {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        background-color: #e74c3c;
        color: #fff;
        border-color: #e74c3c;
        line-height: 1;
        font-weight: 500;
        box-shadow: none;
        outline: none;
        padding: 0.7rem 1rem;
        border-radius: 30px;
        text-decoration: none;
        text-shadow: none;
        transition: all 0.3s ease;
    }
.digiflash-link-wrapper .digiflash-button[disabled] {
            background-color: #e74c3c !important;
            border-color: #e74c3c !important;
            color: #fff !important;
        }
.digiflash-link-wrapper .digiflash-button:hover,
        .digiflash-link-wrapper .digiflash-button:focus {
            background-color: #c0392b;
            border-color: #c0392b;
            color: #fff;
            transform: translateX(0.125rem);
            box-shadow: none;
            outline: none;
        }
.digiflash-link-wrapper .digiflash-button:hover svg {
            transform: translateX(0.125rem);
        }
.digiflash-link-wrapper .digiflash-button span {
            flex: 1;
        }
.digiflash-link-wrapper .digiflash-button svg {
            transition: all 0.3s ease;
            fill: currentColor;
        }
.digiflash-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}
.digiflash-link span {
        flex: 1;
    }
.digiflash-link svg {
        transition: all 0.3s ease;
        fill: currentColor;
    }
.digiflash-link:hover {
        color: #c0392b;
        transform: translateX(0.125rem);
    }
.digiflash-link:hover svg {
            transform: translateX(0.125rem);
        }
.digiflash-coming-soon {
    opacity: 0.6;
}
.digiflash-coming-soon .digiflash-promo-logo {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
.digiflash-coming-soon-badge {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    border-radius: 1rem;
}
/* Responsive Design */
@media (max-width: 1150px) {
    .digiflash-admin-content {
        flex-direction: column;
    }

    .digiflash-admin-first {
        min-width: auto;
    }

    .digiflash-admin-second {
        max-width: 100%;
    }
}
@media (max-width: 870px) {
    .digiflash-admin-header {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 782px) {
    .digiflash-admin-wrap {
        margin: 1rem 1rem 0 0;
    }
        .digiflash-admin-tabs ul {
            justify-content: center;
        }

        .digiflash-admin-tabs a {
            flex: 1;
            justify-content: center;
        }

    .digiflash-actions-grid {
        grid-template-columns: 1fr;
    }

    .digiflash-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .digiflash-step-number {
        align-self: center;
    }
}
@media (max-width: 480px) {
    .digiflash-admin-wrap {
        margin: 0.75rem 0.75rem 0 0;
    }

    .digiflash-admin-section {
        border-radius: 0.5rem;
    }

    .digiflash-section-header {
        padding: 1.25rem;
    }

    .digiflash-actions-container,
    .digiflash-getting-started,
    .digiflash-resources-container {
        padding: 1.25rem;
    }

    .digiflash-action-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
