/* style2.css */

.mcnButtonContentContainer {
    border-radius: 6px;
    background-color: #ccc; /* Default gray */
    cursor: not-allowed;
    transition: background-color 0.3s ease;
}

.mcnButtonContentContainer.active {
    background-color: #03C75A; /* Green when active */
    cursor: pointer;
}

.mcnButtonContent div {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    user-select: none;
}
