.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;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.body {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.statusLabel {
    font-weight: 400;
}

.statusBadge {
    background-color: #dc3545;
    /* Red for disabled */
    color: white;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
}

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

.buttonGroup {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.actionBtn {
    flex: 1;
    padding: 12px;
    border: 1px solid #28a745;
    background: white;
    color: #28a745;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
}

.actionBtn.active {
    background: #28a745;
    color: white;
}

.inputSection {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.inputGroup {
    display: flex;
    gap: 10px;
    align-items: center;
}

.passwordInput {
    padding: 8px 12px;
    background: #e9ecef;
    border: 1px solid #ced4da;
    color: #495057;
    font-size: 16px;
    width: 200px;
}

.getConnectionBtn {
    background: #198754;
    /* Darker green */
    color: white;
    border: none;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
}

.instructionsContainer {
    background: #e2e3e5;
    /* Light gray background */
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

.instructionBlock {
    margin-bottom: 15px;
}

.instructionTitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.instructionBlock p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #212529;
    line-height: 1.5;
}

.highlight {
    color: #0d6efd;
    /* Blue link color */
    font-weight: 500;
}

.command {
    background: #212529;
    /* Black background like screenshot */
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
    font-family: monospace;
    font-size: 13px;
}

.divider {
    border: 0;
    border-top: 1px solid #adb5bd;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .inputGroup {
        flex-direction: column;
        width: 100%;
    }

    .passwordInput {
        width: 100%;
    }

    .getConnectionBtn {
        width: 100%;
    }
}

.statusBadgeEnabled {
    background-color: #198754;
    /* Green for enabled */
    color: white;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
}

.disableBtn {
    background: #dc3545;
    /* Red for disable */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.otpContainer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.otpInput {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #ced4da;
    border-radius: 4px;
    outline: none;
}

.otpInput:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.verifyTitle {
    color: #2196f3;
    /* Blue color */
    font-size: 18px;
    margin-bottom: 5px;
}

.verifySubtitle {
    color: #333;
    font-size: 14px;
}

.resendLink {
    color: #0d6efd;
    cursor: pointer;
    font-weight: 500;
    margin-left: 5px;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .otpContainer {
        gap: 8px;
    }

    .otpInput {
        width: 40px;
        height: 40px;
    }
}