@charset "utf-8";

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: copyNotification 0.3s ease-out;
}

.copy-icon {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 10px;
    font-weight: bold;
}

.copy-text {
    line-height: 1.4;
}

#bo_v_atc img {
    margin-bottom: 10px;
}

@keyframes copyNotification {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 768px) {
    .copy-notification {
        width: 90%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .copy-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
	#bo_v_atc img {
		margin-bottom: 5px;
	}
}