/** Start: Alert model css which display: Download app or continue with bowser **/

/* 1. Container & Typography */
.mobile-optimized-modal .modal-content {
    border-radius: 24px; /* Softer corners */
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.modal-title-text {
    font-size: 1.75rem;
    color: #1a1a1b;
    letter-spacing: -0.5px;
}

/* 2. The Icon Circle */
.icon-circle {
    width: 85px;
    height: 85px;
    background-color: #f0f3ff; /* Very soft blue */
    color: #4b66f1; /* Icon color */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 25px 0;
}

/* 3. The Benefits List */
.benefits-box {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 20px 25px;
    text-align: left;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.checkmark-icon {
    color: #10b981; /* Precise Green from design */
    margin-right: 12px;
    display: flex;
    align-items: center;
}

/* 4. The "Get the App" Button */
.btn-app-download {
    background-color: #4329d6 !important; /* Specific Purple */
    border: none !important;
    font-weight: 600;
    padding: 14px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white !important;
    transition: all 0.2s ease;
}

.btn-app-download:hover {
    background-color: #351fbc !important;
    box-shadow: 0 4px 12px rgba(67, 41, 214, 0.3);
}

/* 5. The "Maybe later" link */
.btn-maybe-later {
    color: #888 !important;
    font-size: 1rem;
    text-decoration: none !important;
    margin-top: 15px;
    display: inline-block;
    background: none;
    border: none;
}

.btn-maybe-later:hover {
    color: #555 !important;
}



/** End: Alert model css which display: Download app or continue with bowser **/