#cabd-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.cabd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}
.cabd-container {
    position: relative;
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
}
.cabd-icon img {
    max-width: 100px;
    margin-bottom: 20px;
}
.cabd-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cabd-container h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}
.cabd-container p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}
.cabd-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.cabd-button {
    border: none;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.cabd-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.cabd-button:active {
    transform: translateY(0);
}
.cabd-button-secondary {
    border: 2px solid;
}
