.status-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eee;

    &--error {
        background: red;
    }

    &--warning {
        background: orange;
    }

    &--normal {
        background: green;
    }
}

.page {
    padding: 20px;
}

.action {
    border: 1px solid;
    padding: 20px;
    margin: 20px 0;

    &.js-processing {
        button {
            pointer-events: none;
            opacity: 0.5;
        }
    }
}

.image-importer {
    p {
        max-width: 800px;
    }

    textarea {
        width: 300px;
        height: 300px;
    }

    &__import {
        display: none;
    }

    &__list {
        table {
            min-width: 500px;
            margin-top: 30px;
        }
        th {
            text-align: left;
            font-weight: bold;
        }
    }

    &__message {
        font-weight: bold;
        padding: 20px 0;
    }

    &.js-import-mode {
        .image-importer__setup-form {
            display: none;
        }
        .image-importer__import {
            display: block;
        }
    }

    .stop-button {
        display: none;
    }

    &.js-running {
        .stop-button {
            display: inline;
        }

        .reset-button {
            display: none;
        }

        .start-button {
            display: none;
        }
    }

    &__url-input {
        width: 400px;
    }
}

.menu {
    margin: 20px;

    a {
        margin-right: 20px;
    }
}

.panel {
    padding: 20px;
}

.info {
    margin-top: 10px;
    font-size: 12px;
}
