/* ========================================
   STEP 3 CATEGORY BUILDER SPECIFIC STYLES
   ========================================
   
   This file contains ONLY the styles specific to Step 3
   of the category builder that are not in wizard.css.
   
   All general wizard styles have been moved to wizard.css
   for consistency across all wizard steps.
   
   ======================================== */

/* ========================================
   TOPIC MODAL (Main Category Selection)
   ======================================== */

.topic-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.topic-modal.show {
    display: block; /* Changed from flex to block */
}

.topic-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px; /* Increased from 420px to accommodate 3 columns */
    width: 90%;
    max-height: 85vh; /* Increased from 70vh for better content fit */
    overflow-y: auto; /* Enable scrolling if needed */
    position: fixed; /* Changed from relative to fixed */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, 0) scale(0.8); /* Position from top-left, not center */
    transition: transform 0.3s ease;
    padding: 0;
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    top: 30px; /* Position near top like suggestion modal */
    left: 50%; /* Center horizontally */
    z-index: 1055; /* Ensure proper stacking */
}

.topic-modal.show .topic-modal-content {
    transform: translate(-50%, 0) scale(1); /* Maintain top positioning when shown */
}

.topic-modal-header {
    padding: 16px 20px 12px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.topic-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.topic-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.topic-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: rotate(90deg);
}

.topic-modal-body {
    padding: 8px 20px 16px 20px;
    flex: 0 1 auto;
    overflow-y: auto;
    margin-bottom: 0px;
}

/* ========================================
   TOPIC GRID & CARDS
   ======================================== */

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed from 2 to 3 columns */
    gap: 6px; /* Reduced gap for tighter layout */
    margin: 4px 0 8px 0;
    grid-auto-rows: min-content;
    align-items: start;
}

.topic-card {
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px 8px; /* Reduced padding for smaller cards */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 50px; /* Reduced from 60px */
    max-height: 55px; /* Reduced from 65px */
    align-self: start;
}

.topic-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 58, 237, 0.02) 0%, rgba(94, 165, 163, 0.02) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(123, 58, 237, 0.15);
    border-color: #06b6d4;
}

.topic-card:hover::before {
    background: linear-gradient(135deg, rgba(123, 58, 237, 0.05) 0%, rgba(94, 165, 163, 0.05) 100%);
}

.topic-card.selected {
    border-color: #0891b2;
    background: rgba(8, 145, 178, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(8, 145, 178, 0.2);
}

.topic-card.selected::before {
    background: linear-gradient(135deg, rgba(123, 58, 237, 0.1) 0%, rgba(94, 165, 163, 0.05) 100%);
}

.topic-card.selected .topic-card-title {
    color: #0891b2;
    font-weight: 700;
}

.topic-card-icon,
.topic-modal .topic-card-icon,
.topic-grid .topic-card-icon,
.topic-card .topic-card-icon,
span.topic-card-icon,
.topic-modal span.topic-card-icon,
.topic-grid span.topic-card-icon {
    font-size: 0.85rem !important; /* Reduced from 1rem */
    margin-bottom: 1px; /* Reduced from 2px */
    display: block;
    line-height: 1;
}

.topic-modal-body .topic-grid .topic-card .topic-card-header .topic-card-icon {
    font-size: 0.85rem !important; /* Reduced from 1rem */
    margin-bottom: 1px; /* Reduced from 2px */
    display: block;
    line-height: 1;
    width: auto;
    height: auto;
}

.topic-card-icon {
    font-size: 0.85rem !important; /* Reduced from 1rem */
}

.topic-card-title {
    font-size: 0.65rem; /* Reduced from 0.75rem */
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.1; /* Tighter line height */
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.topic-card-desc {
    font-size: 0.75rem;
    color: #718096;
    margin: 4px 0 0 0;
    line-height: 1.3;
    text-align: center;
}

/* ========================================
   SUGGESTION MODAL (Third Modal)
   ======================================== */

.suggestion-modal {
    display: none;
    position: fixed;
    z-index: 1060;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.suggestion-modal.show {
    display: block !important;
}

.suggestion-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh; /* Increased from 70vh to fit more content */
    overflow: visible; /* Changed from overflow-y: auto to allow dropdown to extend */
    position: fixed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    padding: 20px;
    top: 30px; /* Much closer to top - reduced from 100px */
    left: 50%;
    transform: translate(-50%, 0) scale(0.8); /* Removed vertical centering */
    z-index: 1061;
}

.suggestion-modal.show .suggestion-modal-content {
    transform: translate(-50%, 0) scale(1); /* Removed vertical centering */
}

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

/* Compact header for better space utilization */
.suggestion-modal-header.compact {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.suggestion-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
}

.suggestion-modal-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #64748b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.suggestion-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: rotate(90deg);
}

.suggestion-modal-body {
    padding: 0;
}

/* ========================================
   SUGGESTION MODAL CONTENT
   ======================================== */

.suggestion-content {
    padding: 15px 0;
    text-align: center;
}

.category-dropdown-container {
    margin-bottom: 20px;
}

/* ========================================
   CUSTOM DROPDOWN STYLES
   ======================================== */

.custom-dropdown {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dropdown-trigger:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.dropdown-trigger.active {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.dropdown-text {
    flex: 1;
    text-align: left;
}

.dropdown-arrow {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-panel.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.dropdown-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: #f8fafc;
    color: #0891b2;
}

.dropdown-option.selected {
    background: #f3f4f6;
    color: #0891b2;
    font-weight: 600;
}

/* Scrollbar styling for dropdown */
.dropdown-panel::-webkit-scrollbar {
    width: 6px;
}

.dropdown-panel::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.dropdown-panel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.dropdown-panel::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.suggestion-category-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #5b21b6 !important;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: rgba(8, 145, 178, 0.05);
    border: 2px solid rgba(8, 145, 178, 0.1);
    position: relative;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(8, 145, 178, 0.2);
}

.suggestion-category-name::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0891b2, #06b6d4, #67e8f9);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-category-name:hover::before {
    opacity: 0.1;
}

.suggestion-category-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.suggestion-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* New positioning for button above category name */
.suggestion-actions-top {
    display: flex;
    justify-content: center;
    margin: 20px 0 15px 0;
    padding: 0;
}

.btn-get-another-modal,
.btn-use-this-modal {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 130px;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-get-another-modal {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border: 2px solid #e2e8f0;
}

.btn-get-another-modal:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #334155;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.15);
}

.btn-use-this-modal {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #67e8f9 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.btn-use-this-modal:hover {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.btn-get-another-modal:active,
.btn-use-this-modal:active {
    transform: translateY(0);
}

/* Button Loading States */
.btn-get-another-modal:disabled,
.btn-use-this-modal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   SUGGESTION PREVIEW CONTENT
   ======================================== */

.suggestion-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    max-height: calc(85vh - 40px); /* Account for modal padding */
}

.suggestion-content-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 16px;
}

.suggestion-content-footer {
    flex-shrink: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    background: white;
}

.suggestion-preview {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px; /* Reduced from 20px */
    background: #f8fafc;
    margin-bottom: 12px; /* Reduced from 16px */
    overflow: hidden;
}

.suggestion-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.suggestion-desc {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.suggestion-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-get-another {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-another:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-2px);
}

.btn-use-this {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-use-this:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
}

/* ========================================
   MODAL RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .topic-modal-content {
        max-width: 95%;
        min-height: 300px;
        max-height: 90vh; /* Better mobile height */
        top: 15px; /* Close to top on mobile like suggestion modal */
    }
    
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .topic-card {
        padding: 6px 8px;
        min-height: 50px;
        max-height: 60px;
    }
    
    .topic-card-icon,
    .topic-modal .topic-card-icon,
    .topic-grid .topic-card-icon,
    .topic-card .topic-card-icon,
    span.topic-card-icon,
    .topic-modal span.topic-card-icon,
    .topic-grid span.topic-card-icon,
    .topic-modal-body .topic-grid .topic-card .topic-card-header .topic-card-icon {
        font-size: 0.9rem !important; /* Slightly larger for mobile but still smaller than original */
        margin-bottom: 4px; /* Reduced from 6px */
    }
    
    .topic-card-title {
        font-size: 0.7rem; /* Reduced from 0.75rem */
    }
    
    .suggestion-modal-content {
        margin: 10px; /* Reduced from 20px */
        max-width: 95%;
        padding: 12px; /* Reduced from 16px to give more room */
        top: 15px; /* Much closer to top on mobile - reduced from 60px */
        max-height: 90vh; /* Allow more height on mobile */
    }
    
    .suggestion-content-wrapper {
        max-height: calc(90vh - 24px); /* Account for reduced mobile padding */
    }
    
    .suggestion-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   MODAL BREADCRUMB NAVIGATION
   ======================================== */

.modal-breadcrumb {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    margin: -20px -20px 20px -20px;
}

.breadcrumb-back {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    margin-right: 12px;
}

.breadcrumb-back:hover {
    background: #e2e8f0;
    color: #374151;
}

.breadcrumb-path {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    color: #64748b;
    font-weight: 500;
}

.breadcrumb-item {
    color: #64748b;
}

.breadcrumb-item.current {
    color: #0f172a;
    font-weight: 600;
}

.breadcrumb-path i {
    font-size: 0.8rem;
}

/* Compact breadcrumb for suggestion modal */
.suggestion-breadcrumb.compact {
    margin-bottom: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .modal-breadcrumb {
        padding: 10px 12px;
        margin: -16px -16px 16px -16px;
    }
    
    .breadcrumb-back {
        padding: 3px 6px;
        margin-right: 8px;
    }
    
    .breadcrumb-path {
        font-size: 0.85rem;
        gap: 6px;
    }
}

/* Category Added Success Toast */
.category-success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.category-success-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.category-success-toast i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* In-Modal Success Message */
.suggestion-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggestion-success-message.show {
    opacity: 1;
    transform: scale(1);
}

.suggestion-success-message.hidden {
    display: none;
}

.success-icon {
    margin-right: 20px;
}

.success-icon i {
    font-size: 3rem;
    color: #10b981;
    animation: successPulse 1.5s infinite;
}

.success-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.success-text p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Clear Categories Button */
.btn-clear {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-clear:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-clear:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

.btn-clear i {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CATEGORY CHIPS (Top Display)
   ======================================== */

.category-chip {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem;
    font-size: 0.85rem;
}

.chip-content {
    flex: 1;
}

.chip-name {
    font-weight: 600;
    color: #333;
}

.chip-details {
    font-size: 0.75rem;
    color: #666;
}

.chip-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.chip-edit {
    background: none;
    border: none;
    color: #0891b2;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-edit:hover {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.1);
    transform: translateY(-1px);
}

.chip-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-remove:hover {
    color: #c82333;
    background: rgba(220, 53, 69, 0.1);
    transform: translateY(-1px);
}

/* ========================================
   PULSE ANIMATION FOR FINISH BUTTON
   ======================================== */

.pulse-button {
    animation: pulse-animation 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7);
}

.pulse-button-strong {
    animation: pulse-animation-strong 1s infinite;
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.9);
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(8, 145, 178, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0);
    }
}

@keyframes pulse-animation-strong {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.9);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(8, 145, 178, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0);
    }
}