/**
 * Dream Gift Styling
 */

.dream-gift-container {
    margin: 15px 0;
}

#dream-gift-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #5bc0de;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#dream-gift-btn:hover {
    background-color: #46b8da;
}

#dream-gift-btn i {
    margin-right: 5px;
}

#dreamGiftModal .modal-header {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

#dreamGiftModal .modal-title {
    color: #333;
    font-weight: 600;
}

#dreamGiftModal .modal-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e5e5e5;
}

#dream-gift-result {
    margin-top: 20px;
}

.copy-btn {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
}

.copy-btn:hover {
    background-color: #e8e8e8;
}

#expiry-date-display {
    font-weight: 600;
}

@media (max-width: 767px) {
    #dream-gift-btn {
        width: 100%;
        margin-top: 10px;
    }
}