.live-example-block {
    background-color: #4a4a4a;
    border-radius: 4px 4px 0 0;
    color: #fff;
}

.action-button {
    height: 45px;
    width: 200px;
    padding: 10px 40px;
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    font-size: inherit;
}

.upload-block {
    position: relative;
    display: inline-block;
    height: 45px;
    width: 200px;
}

.upload-block label {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    display: inline-block;
}

.run-button {
    display: block;
    text-align: center;
    background: #8fd14f;
}

.action-button-label {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.copy-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.copy-button:hover,
.copy-button:hover svg {
    color: #3b8bc2;
    fill: #3b8bc2;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b8bc2;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

.alert-message {
    position: absolute;
    display: none;
    right: 0;
    top: -30px;
    background-color: #E14544;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}