﻿.download-notice-container {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

#downloadNotice {
    display: none;
    background-color: #ffffff;
    color: #155724;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
    margin-top: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    animation: fadeInNotice 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 300px;
    z-index: 1000;
}

.notice-header {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #28a745;
}

.notice-image-container {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Set specific dimensions for the illustration */
.notice-image {
    width: 201px;
    height: 144px;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    border: 1px solid #e9ecef;
}

@keyframes fadeInNotice {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notice-icon {
    margin-right: 10px;
    font-size: 20px;
}
