* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.header {
    background-color: #dd2222;
    color: white;
    padding: 20px;
    text-align: center;
}

.warning {
    font-size: 16px;
    margin-bottom: 20px;
}

.headline {
    font-size: 28px;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.3;
}

.status {
    font-size: 14px;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.chat-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-out;
}

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

.avatar {
    width: 40px;
    height: 40px;
    background-color: #e5e7eb;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-bubble {
    background-color: #f3f4f6;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 80%;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-bubble {
    background-color: #dd2222;
    color: white;
    margin-left: auto;
}

.buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0 20px 50px; /* Added left margin to align with messages */
    animation: fadeIn 0.5s ease-out;
}

.btn {
    padding: 8px 24px;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-yes {
    background-color: #dd2222;
    color: white;
}

.btn-no {
    background-color: #4b5563;
    color: white;
}}

.btn:hover {
    opacity: 0.9;
}

.qualification-panel {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 0.5s ease-out;
}

.qualification-panel h3 {
    color: #15803d;
    font-size: 24px;
    margin-bottom: 15px;
}

.qualification-panel p {
    color: #374151;
    margin-bottom: 15px;
}

.phone-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.phone-number {
    color: #dd2222;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.timer {
    color: #dd2222;
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.hidden {
    display: none;
}
