.cdm-delivery-codes-section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cdm-code-wrapper {
    transition: transform 0.2s;
}

.cdm-code-wrapper:hover {
    transform: translateY(-2px);
}

.cdm-copy-btn:hover {
    background: #0056b3 !important;
    transform: scale(1.05);
}

.cdm-copy-btn:active {
    transform: scale(0.98);
}

.cdm-code-text {
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
}

.cdm-copy-btn.copied {
    background: #28a745 !important;
}

.cdm-copy-btn.copied .cdm-copy-text {
    display: none;
}

.cdm-copy-btn.copied .cdm-copied-text {
    display: inline !important;
}

/* Mobile Responsive - Full width button */
@media (max-width: 768px) {
    .cdm-code-container-mobile {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .cdm-copy-btn {
        width: 100% !important;
        margin-top: 0 !important;
    }
    
    .cdm-delivery-codes-section {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    .cdm-code-item {
        padding: 15px !important;
    }
}