.container {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    font-family: 'Roboto Condensed', sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.header {
    background: #2C3E50;
    color: white;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
}

.body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.statusRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.statusLabel {
    font-weight: 400;
}

.statusBadge {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
}

.instruction {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.buttonGroup {
    display: flex;
    gap: 0;
    /* No gap between buttons in the design, they seem attached or very close? Actually screenshot shows a gap or separate buttons. Let's look closer. They look like separate buttons with green borders. */
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.actionBtn {
    background: white;
    color: #28a745;
    border: 1px solid #28a745;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    transition: all 0.2s;
}

.actionBtn:first-child {
    border-right: none;
    /* If they are attached */
    /* Looking at the screenshot again, they are separate buttons in the first image (laptop), but attached in the second (mobile)? No, wait.
       Image 1 (Laptop): Two separate buttons with space between them? No, they look like a button group.
       Actually, looking at "ENABLE USING MOBILE" and "ENABLE USING TELEGRAM", they look like two distinct buttons side-by-side.
       Let's try separate buttons first with a small gap.
    */
    border-right: 1px solid #28a745;
    margin-right: -1px;
    /* Overlap borders if we want them attached */
}

/* Let's go with the style in the second image which is clearer. They look like two equal width buttons side by side. */
.buttonGroup {
    display: flex;
    width: 100%;
    max-width: 800px;
}

.actionBtn {
    flex: 1;
    padding: 12px;
    border: 1px solid #28a745;
    background: white;
    color: #28a745;
    font-weight: 700;
    font-size: 13px;
}

.actionBtn:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .body {
        padding: 15px 10px;
    }

    .buttonGroup {
        flex-direction: row;
        /* Keep row on mobile as per screenshot */
    }

    .actionBtn {
        font-size: 11px;
        /* Smaller font on mobile */
        padding: 10px 5px;
        white-space: nowrap;
    }
}