/* /var/www/html/SS/PDSS/PD_BASICABO.css - AKTUALISIERT FÜR VEREINFACHTES ONBOARDING */
/* ===== MODAL GRUNDLAGEN ===== */
.pd-basicabo-modal-hidden {
    display: none !important;
}
.pd-basicabo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}
.pd-basicabo-modal-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== MODAL HEADER ===== */
.pd-basicabo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}
.pd-basicabo-modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}
.pd-basicabo-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}
.pd-basicabo-close-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}
.pd-basicabo-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

/* ===== MODAL CONTENT ===== */
.pd-basicabo-modal-content {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
.pd-basicabo-modal-content::-webkit-scrollbar {
    width: 6px;
}
.pd-basicabo-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.pd-basicabo-modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
.pd-basicabo-modal-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===== FLOW AUSWAHL (NEU) ===== */
.pd-flow-selection-hidden {
    display: none !important;
}
.pd-flow-selection {
    text-align: center;
    padding: 2rem;
}
.pd-flow-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}
.pd-flow-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .pd-flow-options {
        flex-direction: column;
    }
}
.pd-flow-option {
    flex: 1;
    padding: 2.5rem 1.5rem;
    border: 3px solid;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    max-width: 400px;
}
.pd-flow-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pd-flow-option:active {
    transform: translateY(-5px) scale(1.01);
}
.pd-flow-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.pd-flow-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.pd-flow-option-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.pd-flow-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}
/* Design Flow (Blau) */
.pd-flow-design {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.pd-flow-design:hover {
    border-color: #1d4ed8;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}
.pd-flow-design .pd-flow-badge {
    background: #3b82f6;
    color: white;
}
/* Payment Flow (Grün) */
.pd-flow-pay {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.pd-flow-pay:hover {
    border-color: #059669;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}
.pd-flow-pay .pd-flow-badge {
    background: #10b981;
    color: white;
}

/* ===== ABO AUSWAHL GRID ===== */
.pd-basicabo-selection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .pd-basicabo-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.pd-basicabo-box {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}
.pd-basicabo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}
.pd-basicabo-box:hover::before {
    left: 100%;
}
.pd-basicabo-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}
/* BASIC ABO - Modern Blue */
.pd-basicabo-basic {
    border-color: #e0f2fe;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: #0c4a6e;
}
.pd-basicabo-basic:hover {
    border-color: #38bdf8;
    box-shadow:
        0 25px 50px rgba(56, 189, 248, 0.15),
        0 15px 30px rgba(56, 189, 248, 0.1),
        0 0 40px rgba(56, 189, 248, 0.1);
}
/* STANDARD ABO - Modern Dark */
.pd-basicabo-standard {
    border-color: #1e293b;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
}
.pd-basicabo-standard:hover {
    border-color: #64748b;
    box-shadow:
        0 25px 50px rgba(99, 102, 241, 0.15),
        0 15px 30px rgba(99, 102, 241, 0.1),
        0 0 40px rgba(99, 102, 241, 0.1);
}
/* PREMIUM ABO - Luxury Gold */
.pd-basicabo-premium {
    border-color: #fef3c7;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde68a 100%);
    color: #92400e;
    position: relative;
}
.pd-basicabo-premium::after {
    content: '⭐ PREMIUM';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pd-basicabo-premium:hover {
    border-color: #f59e0b;
    box-shadow:
        0 25px 50px rgba(245, 158, 11, 0.15),
        0 15px 30px rgba(245, 158, 11, 0.1),
        0 0 40px rgba(245, 158, 11, 0.1);
}
/* SELECTED STATES */
.pd-basicabo-selected {
    border-width: 3px;
    transform: scale(1.03);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(59, 130, 246, 0.1);
}
.pd-basicabo-basic.pd-basicabo-selected {
    border-color: #3b82f6;
}
.pd-basicabo-standard.pd-basicabo-selected {
    border-color: #94a3b8;
}
.pd-basicabo-premium.pd-basicabo-selected {
    border-color: #f59e0b;
}

/* ===== ABO INHALT ===== */
.pd-basicabo-header {
    margin-bottom: 1.5rem;
    text-align: center;
}
.pd-basicabo-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: -0.025em;
}
.pd-basicabo-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, currentColor, currentColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pd-basicabo-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}
.pd-basicabo-year-price {
    font-size: 0.875rem;
    color: inherit;
    opacity: 0.7;
    font-weight: 500;
}
.pd-basicabo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}
.pd-basicabo-features li {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pd-basicabo-features li:last-child {
    border-bottom: none;
}
.pd-basicabo-features li::before {
    content: '✓';
    font-weight: 700;
    margin-right: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* ===== BUTTONS ===== */
.pd-basicabo-select-btn {
    margin-top: auto;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}
.pd-basicabo-select-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.pd-basicabo-select-btn:hover::before {
    left: 100%;
}
.pd-basicabo-basic .pd-basicabo-select-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.pd-basicabo-basic .pd-basicabo-select-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.pd-basicabo-standard .pd-basicabo-select-btn {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}
.pd-basicabo-standard .pd-basicabo-select-btn:hover {
    background: linear-gradient(135deg, #475569, #334155);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}
.pd-basicabo-premium .pd-basicabo-select-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.pd-basicabo-premium .pd-basicabo-select-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}
.pd-basicabo-btn-selected {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

/* ===== PROGRESS BAR (AKTUALISIERT für 3 Schritte) ===== */
.pd-basicabo-progress-bar {
    margin-bottom: 3rem;
    padding: 0 1rem;
}
.pd-basicabo-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}
.pd-basicabo-step {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}
.pd-basicabo-step-active {
    color: #3b82f6;
    font-weight: 700;
    transform: scale(1.1);
}
.pd-basicabo-progress-track {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.pd-basicabo-progress-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    opacity: 0.1;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.pd-basicabo-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* ===== FORMULAR STYLES ===== */
.pd-basicabo-form-hidden {
    display: none;
}
.pd-basicabo-step-content {
    display: none;
    animation: stepFadeIn 0.5s ease-out;
}
@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.pd-basicabo-step-content.pd-basicabo-step-active {
    display: block;
}
.pd-basicabo-step-inner {
    text-align: center;
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
}
.pd-basicabo-step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}
.pd-basicabo-step-desc {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ===== FORM ELEMENTS (AKTUALISIERT) ===== */
.pd-basicabo-step-inner input,
.pd-basicabo-step-inner select,
.pd-basicabo-step-inner textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}
.pd-basicabo-step-inner input:focus,
.pd-basicabo-step-inner select:focus,
.pd-basicabo-step-inner textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}
.pd-basicabo-step-inner textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* ===== RADIO & CHECKBOX STYLES (NEU) ===== */
.pd-radio-group {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}
.pd-radio-option {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}
.pd-radio-option:hover {
    border-color: #93c5fd;
    transform: translateY(-2px);
}
.pd-radio-option input[type="radio"] {
    display: none;
}
.pd-radio-option input[type="radio"]:checked + .pd-radio-content {
    border-color: #3b82f6;
    background: #eff6ff;
}
.pd-radio-content {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.pd-radio-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.pd-radio-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ===== BUTTON STYLES ===== */
.pd-basicabo-next-btn,
.pd-basicabo-prev-btn,
.pd-complete-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.pd-basicabo-next-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.pd-basicabo-next-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.pd-basicabo-prev-btn {
    background: #64748b;
    color: white;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}
.pd-basicabo-prev-btn:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}
.pd-complete-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.pd-complete-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* ===== SUMMARY BOX (NEU) ===== */
.pd-summary-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid #e2e8f0;
    text-align: left;
}
.pd-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}
.pd-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.pd-summary-label {
    font-weight: 600;
    color: #374151;
}
.pd-summary-value {
    color: #6b7280;
    text-align: right;
}
.pd-summary-highlight {
    color: #10b981;
    font-weight: 700;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .pd-basicabo-modal-container {
        margin: 1rem;
        border-radius: 16px;
    }
    .pd-basicabo-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    .pd-basicabo-modal-title {
        font-size: 1.5rem;
    }
    .pd-basicabo-modal-content {
        padding: 1.5rem;
    }
    .pd-basicabo-box {
        padding: 1.5rem 1rem;
    }
    .pd-basicabo-title {
        font-size: 1.25rem;
    }
    .pd-basicabo-price {
        font-size: 1.75rem;
    }
    .pd-basicabo-step-title {
        font-size: 1.75rem;
    }
    .pd-basicabo-step-desc {
        font-size: 1rem;
    }
    .pd-flow-options {
        flex-direction: column;
    }
    .pd-radio-group {
        flex-direction: column;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .pd-basicabo-modal-overlay,
    .pd-basicabo-modal-container,
    .pd-basicabo-box,
    .pd-basicabo-select-btn,
    .pd-basicabo-progress-fill,
    .pd-basicabo-step-content,
    .pd-flow-option {
        animation: none;
        transition: none;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .pd-basicabo-modal-container {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
    .pd-basicabo-modal-title {
        background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .pd-basicabo-step-title {
        background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .pd-basicabo-basic {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #334155;
    }
    .pd-basicabo-step-inner input,
    .pd-basicabo-step-inner select,
    .pd-basicabo-step-inner textarea {
        background: #1e293b;
        border-color: #475569;
        color: #f1f5f9;
    }
    .pd-summary-box {
        background: #1e293b;
        border-color: #475569;
    }
    .pd-radio-option {
        background: #1e293b;
        border-color: #475569;
    }
}

/* ===== ERSPARNIS PROFESSIONAL (BEI BEDARF) ===== */
#pd-savings {
    background: linear-gradient(135deg, #d4f5e3, #a5e8c5);
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16,185,129,0.2);
    display: inline-block;
    margin-top: 0.5rem;
}

/* ===== LOADING & SUCCESS STATES ===== */
.pd-loading {
    opacity: 0.7;
    pointer-events: none;
}
.pd-success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pdFadeIn 0.3s ease;
}
@keyframes pdFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}