.btn {
    font-family: sans-serif;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: 0.15rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
    background-color: #ff0000;
}

.btn-x {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.7rem;
    z-index: 10;
    color: #fff;
    background-color: #dc3545;
    transition: background-color 0.3s ease;
}

.top-left {
    position: absolute;
    left: -12px;
    top: -12px;
}

.font {
    font-size: 12px;
    margin: 0;
    text-align: center;
}

#visualiser-div {
    z-index: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -180px;
    margin-left: -250px;
    white-space: nowrap;
    padding: 8px;
    color: white;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 50%);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    touch-action: none;
    user-select: none;
}

#visualiser-iframe {
    width: 496px;
    height: 378px;
}

#microblocks-div {
    z-index: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -180px;
    margin-left: -250px;
    white-space: nowrap;
    padding: 8px;
    color: white;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 50%);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    touch-action: none;
    user-select: none;
}

#microblocks-iframe {
    width: 496px;
    height: 378px;
}

#message_title_text {
    font-size: 16px;
}

#message_info {
    margin-top: 1px;
}

#message_title_img {
    margin-right: 20px;
    font-size: 24px;
}

#message_content {
    position: fixed;
    right: -470px;
    top: 20px;
    width: 384px;
    padding: 16px 24px;
    display: flex;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
    transition: all 0.3s ease;
}

.success {
    color: #52c41a;
}

.error {
    color: #ff4d4f;
}

.info {
    color: #1890ff;
}

.waring {
    color: #faad14;
}

#message_content_text {
    flex: 1;
    font-size: 14px;
    margin-top: 3px;
    color: #333333;
}

.message_info {
    background: url('../../Backgrounds/info.svg');
}