/* Css tương tác gợi nhớ thương hiệu */
.ad-dialog {
    /* background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px; */
    /* width: 100%; */
}

.ad-dialog.hidden { 
    display: none; 
}

#adDialog .ad-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

#adDialog .ad-options {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

#adDialog .ad-button {
    padding: 5px 20px;
    border: 1px solid #4354ff;
    border-radius: 6px;
    background: #fff;
    color: #4354ff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
    white-space: nowrap;
}

#adDialog .ad-button:hover {
    background: #4354ff;
    color: #fff;
}

#adDialog .ad-button-secondary {
    border-color: #e9ecef;
    color: #495057;
}

#adDialog .ad-button-secondary:hover {
    background: #e9ecef;
    color: #495057;
}

#adDialog .brand-name { 
    font-weight: bold; 
    color: #4354ff; 
    white-space: nowrap;
}

#adDialog .ad-speaker { 
    font-weight: bold; 
    color: #3c4145; 
}