/* ========================================
       SCOPED STYLES FOR DECRYPTION TOOL
       Won't affect header/footer
       ======================================== */
    
    .decryption-tool-wrapper {
        --primary-green: #48772c;
        --primary-green-dark: #3a6023;
        --primary-green-darker: #2d4a1c;
        --secondary-gray: #5f5f5f;
        --secondary-gray-dark: #4a4a4a;
        --white: #ffffff;
        --light-bg: #f8f9fa;
        --light-green: #e8f5e0;
        --light-green-alt: #d4edcc;
        --border-color: #e0e0e0;
        --success-color: #28a745;
        --error-color: #dc3545;
        --warning-color: #ffc107;
        font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .tool-card{
        height: auto !important;
    }
    
    .decryption-tool-wrapper * {
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .decryption-tool-wrapper .hero-section {
        background: linear-gradient(135deg, #48772c 0%, #3a6023 40%, #2d4a1c 100%);
        color: #ffffff;
        padding: 70px 0;
        position: relative;
        overflow: hidden;
    }
    
    .decryption-tool-wrapper .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        animation: backgroundMove 20s linear infinite;
    }
    
    @keyframes backgroundMove {
        0% { background-position: 0 0; }
        100% { background-position: 80px 80px; }
    }
    
    .decryption-tool-wrapper .hero-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        height: 100px;
        background: #f8f9fa;
        transform: skewY(-2deg);
    }
    
    .decryption-tool-wrapper .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .decryption-tool-wrapper .hero-section h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        letter-spacing: -0.5px;
    }
    
    .decryption-tool-wrapper .hero-section .lead {
        font-size: 1.25rem;
        opacity: 0.95;
        max-width: 750px;
        margin: 0 auto 25px;
        line-height: 1.7;
    }
    
    .decryption-tool-wrapper .hero-icon {
        width: 90px;
        height: 90px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.5rem;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.2);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
        50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    }
    
    .decryption-tool-wrapper .rating-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(255,255,255,0.2);
        padding: 12px 25px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .decryption-tool-wrapper .rating-badge i {
        color: #ffc107;
    }
    
    .decryption-tool-wrapper .rating-badge .rating-text {
        font-weight: 700;
        margin-left: 5px;
    }
    
    .decryption-tool-wrapper .rating-badge .review-count {
        opacity: 0.9;
        margin-left: 8px;
    }
    
    /* Main Content Area */
    .decryption-tool-wrapper .main-content {
        background: #f8f9fa;
        padding: 50px 0 60px;
        position: relative;
        z-index: 1;
    }
    
    /* Tool Card */
    .decryption-tool-wrapper .tool-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        padding: 40px;
        margin-bottom: 30px;
        border: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .decryption-tool-wrapper .tool-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #48772c, #5f5f5f, #48772c);
    }
    
    .decryption-tool-wrapper .tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 70px rgba(72, 119, 44, 0.15);
    }
    
    .decryption-tool-wrapper .section-title {
        color: #48772c;
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .decryption-tool-wrapper .section-title i {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #e8f5e0, #d4edcc);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
    
    /* Form Elements */
    .decryption-tool-wrapper .form-label {
        color: #5f5f5f;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .decryption-tool-wrapper .form-label i {
        color: #48772c;
        font-size: 0.9rem;
    }
    
    .decryption-tool-wrapper .form-control,
    .decryption-tool-wrapper .form-select {
        border: 2px solid #e0e0e0;
        border-radius: 14px;
        padding: 15px 20px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: #ffffff;
    }
    
    .decryption-tool-wrapper .form-control:focus,
    .decryption-tool-wrapper .form-select:focus {
        border-color: #48772c;
        box-shadow: 0 0 0 4px rgba(72, 119, 44, 0.15);
        outline: none;
    }
    
    .decryption-tool-wrapper textarea.form-control {
        min-height: 180px;
        resize: vertical;
        font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .decryption-tool-wrapper .input-group .form-control {
        border-right: none;
    }
    
    .decryption-tool-wrapper .input-group .btn {
        border: 2px solid #e0e0e0;
        border-left: none;
        border-radius: 0 14px 14px 0;
        padding: 0 20px;
        background: #f8f9fa;
        color: #5f5f5f;
    }
    
    .decryption-tool-wrapper .input-group .btn:hover {
        background: #48772c;
        color: #ffffff;
        border-color: #48772c;
    }
    
    /* Buttons */
    .decryption-tool-wrapper .btn-decrypt {
        background: linear-gradient(135deg, #48772c 0%, #3a6023 100%);
        color: #ffffff;
        border: none;
        padding: 18px 50px;
        font-size: 1.15rem;
        font-weight: 700;
        border-radius: 14px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
        overflow: hidden;
    }
    
    .decryption-tool-wrapper .btn-decrypt::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;
    }
    
    .decryption-tool-wrapper .btn-decrypt:hover::before {
        left: 100%;
    }
    
    .decryption-tool-wrapper .btn-decrypt:hover {
        background: linear-gradient(135deg, #3a6023 0%, #2d4a1c 100%);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(72, 119, 44, 0.4);
        color: #ffffff;
    }
    
    .decryption-tool-wrapper .btn-secondary-action {
        background: #ffffff;
        color: #48772c;
        border: 2px solid #48772c;
        padding: 16px 35px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 14px;
        transition: all 0.3s ease;
    }
    
    .decryption-tool-wrapper .btn-secondary-action:hover {
        background: #48772c;
        color: #ffffff;
        transform: translateY(-2px);
    }
    
    .decryption-tool-wrapper .btn-copy {
        background: linear-gradient(135deg, #48772c, #3a6023);
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .decryption-tool-wrapper .btn-copy:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(72, 119, 44, 0.3);
        color: #ffffff;
    }
    
    /* Options Grid */
    .decryption-tool-wrapper .options-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e8f5e0;
    }
    
    .decryption-tool-wrapper .options-title {
        color: #48772c;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Output Section */
    .decryption-tool-wrapper .output-wrapper {
        position: relative;
        margin-top: 25px;
    }
    
    .decryption-tool-wrapper .output-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .decryption-tool-wrapper .output-textarea {
        background: #f8f9fa;
        border: 2px dashed #48772c;
    }
    
    .decryption-tool-wrapper .output-textarea:focus {
        background: #ffffff;
        border-style: solid;
    }
    
    /* Status Badge */
    .decryption-tool-wrapper .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .decryption-tool-wrapper .status-badge.success {
        background: #e8f5e0;
        color: #48772c;
    }
    
    .decryption-tool-wrapper .status-badge.error {
        background: #fce4e4;
        color: #dc3545;
    }
    
    /* Ad Spaces */
    .decryption-tool-wrapper .ad-space {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 2px dashed #dee2e6;
        border-radius: 16px;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        font-weight: 500;
        position: sticky;
        top: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .decryption-tool-wrapper .ad-space i {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }
    
    /* Feature Boxes */
    .decryption-tool-wrapper .features-section {
        margin-top: 50px;
    }
    
    .decryption-tool-wrapper .feature-box {
        background: #ffffff;
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .decryption-tool-wrapper .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #48772c, #5f5f5f);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .decryption-tool-wrapper .feature-box:hover::before {
        transform: scaleX(1);
    }
    
    .decryption-tool-wrapper .feature-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(72, 119, 44, 0.15);
        border-color: #e8f5e0;
    }
    
    .decryption-tool-wrapper .feature-icon {
        width: 85px;
        height: 85px;
        background: linear-gradient(135deg, #e8f5e0 0%, #d4edcc 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.2rem;
        color: #48772c;
        transition: all 0.4s ease;
    }
    
    .decryption-tool-wrapper .feature-box:hover .feature-icon {
        background: linear-gradient(135deg, #48772c 0%, #3a6023 100%);
        color: #ffffff;
        transform: rotateY(180deg);
    }
    
    .decryption-tool-wrapper .feature-box h4 {
        color: #48772c;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .decryption-tool-wrapper .feature-box p {
        color: #5f5f5f;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    /* Statistics Section */
    .decryption-tool-wrapper .stats-section {
        background: linear-gradient(135deg, #48772c 0%, #3a6023 50%, #2d4a1c 100%);
        border-radius: 24px;
        padding: 50px 40px;
        margin: 50px 0;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }
    
    .decryption-tool-wrapper .stats-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }
    
    .decryption-tool-wrapper .stat-item {
        text-align: center;
        padding: 20px;
        position: relative;
        z-index: 1;
    }
    
    .decryption-tool-wrapper .stat-number {
        font-size: 3.2rem;
        font-weight: 800;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #ffffff, #e8f5e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .decryption-tool-wrapper .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    /* Content Section */
    .decryption-tool-wrapper .content-section {
        background: #ffffff;
        border-radius: 24px;
        padding: 55px;
        margin-top: 50px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    }
    
    .decryption-tool-wrapper .content-section h2 {
        color: #48772c;
        font-weight: 700;
        margin-bottom: 25px;
        font-size: 1.9rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .decryption-tool-wrapper .content-section h3 {
        color: #5f5f5f;
        font-weight: 600;
        margin: 35px 0 18px;
        font-size: 1.4rem;
        padding-left: 15px;
        border-left: 4px solid #48772c;
    }
    
    .decryption-tool-wrapper .content-section p {
        color: #5f5f5f;
        line-height: 1.9;
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .decryption-tool-wrapper .content-section ul,
    .decryption-tool-wrapper .content-section ol {
        color: #5f5f5f;
        line-height: 2;
        padding-left: 25px;
    }
    
    .decryption-tool-wrapper .content-section li {
        margin-bottom: 12px;
        padding-left: 10px;
    }
    
    .decryption-tool-wrapper .content-section strong {
        color: #48772c;
    }
    
    /* Info Box */
    .decryption-tool-wrapper .info-box {
        background: linear-gradient(135deg, #e8f5e0, #f0f9eb);
        border-left: 5px solid #48772c;
        border-radius: 0 16px 16px 0;
        padding: 25px 30px;
        margin: 30px 0;
    }
    
    .decryption-tool-wrapper .info-box h5 {
        color: #48772c;
        font-weight: 700;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .decryption-tool-wrapper .info-box p {
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    /* FAQ Section */
    .decryption-tool-wrapper .faq-section {
        margin-top: 50px;
    }
    
    .decryption-tool-wrapper .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 16px !important;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .decryption-tool-wrapper .accordion-button {
        font-weight: 600;
        color: #48772c;
        background: #ffffff;
        padding: 22px 28px;
        font-size: 1.1rem;
        border: none;
    }
    
    .decryption-tool-wrapper .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #e8f5e0, #f0f9eb);
        color: #48772c;
        box-shadow: none;
    }
    
    .decryption-tool-wrapper .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .decryption-tool-wrapper .accordion-button::after {
        background-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .decryption-tool-wrapper .accordion-body {
        padding: 25px 28px;
        color: #5f5f5f;
        line-height: 1.8;
        background: #ffffff;
        font-size: 1.02rem;
    }
    
    /* Related Tools */
    .decryption-tool-wrapper .related-tools {
        background: linear-gradient(135deg, #e8f5e0, #f0f9eb);
        border-radius: 20px;
        padding: 35px;
        margin-top: 40px;
    }
    
    .decryption-tool-wrapper .related-tools h4 {
        color: #48772c;
        font-weight: 700;
        margin-bottom: 25px;
        font-size: 1.3rem;
    }
    
    .decryption-tool-wrapper .related-tool-link {
        display: flex;
        align-items: center;
        padding: 15px 22px;
        background: #ffffff;
        border-radius: 12px;
        margin-bottom: 12px;
        color: #5f5f5f;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
        border: 1px solid transparent;
    }
    
    .decryption-tool-wrapper .related-tool-link:hover {
        background: #48772c;
        color: #ffffff;
        transform: translateX(10px);
        border-color: #48772c;
    }
    
    .decryption-tool-wrapper .related-tool-link i {
        width: 35px;
        height: 35px;
        background: #e8f5e0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #48772c;
        transition: all 0.3s ease;
    }
    
    .decryption-tool-wrapper .related-tool-link:hover i {
        background: rgba(255,255,255,0.2);
        color: #ffffff;
    }
    
    /* Toast Notification */
    .decryption-tool-wrapper .custom-toast {
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 99999;
        min-width: 350px;
        max-width: 450px;
        padding: 22px 28px;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.25);
        display: none;
        animation: toastSlideIn 0.5s ease;
    }
    
    .decryption-tool-wrapper .custom-toast.success {
        background: linear-gradient(135deg, #48772c, #3a6023);
        color: #ffffff;
    }
    
    .decryption-tool-wrapper .custom-toast.error {
        background: linear-gradient(135deg, #dc3545, #c82333);
        color: #ffffff;
    }
    
    .decryption-tool-wrapper .custom-toast.warning {
        background: linear-gradient(135deg, #ffc107, #e0a800);
        color: #212529;
    }
    
    .decryption-tool-wrapper .custom-toast.info {
        background: linear-gradient(135deg, #5f5f5f, #4a4a4a);
        color: #ffffff;
    }
    
    .decryption-tool-wrapper .toast-content {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .decryption-tool-wrapper .toast-icon {
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .decryption-tool-wrapper .toast-message {
        font-weight: 600;
        font-size: 1.02rem;
        line-height: 1.5;
    }
    
    .decryption-tool-wrapper .toast-close {
        position: absolute;
        top: 12px;
        right: 18px;
        background: none;
        border: none;
        color: inherit;
        font-size: 1.3rem;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .decryption-tool-wrapper .toast-close:hover {
        opacity: 1;
    }
    
    .decryption-tool-wrapper .toast-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: rgba(255,255,255,0.4);
        border-radius: 0 0 16px 16px;
        animation: toastProgress 4s linear forwards;
    }
    
    @keyframes toastSlideIn {
        from {
            transform: translateX(120%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes toastSlideOut {
        from {
            transform: translateX(0);
            opacity: 1;
        }
        to {
            transform: translateX(120%);
            opacity: 0;
        }
    }
    
    @keyframes toastProgress {
        from { width: 100%; }
        to { width: 0%; }
    }
    
    /* Quick Tips Section */
    .decryption-tool-wrapper .tips-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        margin-top: 20px;
    }
    
    .decryption-tool-wrapper .tips-card h5 {
        color: #48772c;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .decryption-tool-wrapper .tip-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px dashed #e0e0e0;
    }
    
    .decryption-tool-wrapper .tip-item:last-child {
        border-bottom: none;
    }
    
    .decryption-tool-wrapper .tip-item i {
        color: #48772c;
        font-size: 1rem;
        margin-top: 3px;
    }
    
    .decryption-tool-wrapper .tip-item span {
        color: #5f5f5f;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Responsive Design */
    @media (max-width: 1199px) {
        .decryption-tool-wrapper .hero-section h1 {
            font-size: 2.4rem;
        }
    }
    
    @media (max-width: 991px) {
        .decryption-tool-wrapper .ad-space {
            min-height: 120px;
            margin-bottom: 25px;
            position: relative;
        }
        
        .decryption-tool-wrapper .hero-section {
            padding: 50px 0;
        }
        
        .decryption-tool-wrapper .hero-section h1 {
            font-size: 2rem;
        }
        
        .decryption-tool-wrapper .tool-card {
            padding: 30px;
        }
        
        .decryption-tool-wrapper .content-section {
            padding: 35px;
        }
    }
    
    @media (max-width: 767px) {
        .decryption-tool-wrapper .hero-section h1 {
            font-size: 1.7rem;
        }
        
        .decryption-tool-wrapper .hero-section .lead {
            font-size: 1rem;
        }
        
        .decryption-tool-wrapper .btn-decrypt {
            width: 100%;
            margin-bottom: 12px;
        }
        
        .decryption-tool-wrapper .btn-secondary-action {
            width: 100%;
        }
        
        .decryption-tool-wrapper .content-section {
            padding: 25px 20px;
        }
        
        .decryption-tool-wrapper .content-section h2 {
            font-size: 1.5rem;
        }
        
        .decryption-tool-wrapper .stat-number {
            font-size: 2.5rem;
        }
        
        .decryption-tool-wrapper .tool-card {
            padding: 25px 20px;
        }
        
        .decryption-tool-wrapper .custom-toast {
            min-width: auto;
            left: 15px;
            right: 15px;
        }
    }