.min-screen-width {
    min-width: 560px;
}

h1 {
    font-size: 40px;
    text-align: center;
    height: 70px;
    line-height: 70px;
    background-color: #07889b;
    color: #fff;
    margin: 0;
}

.btn-radio {
    text-align: right;
    margin-top: 10px;
    margin-right: 10px;

    .language, .update-method {
        margin-right: 3px;
    }

    .btn-radio-color {
        color: rgb(50, 50, 50);
        background-color: #fff;
        border-color: rgb(50, 50, 50);
    }
    .btn-check:checked + .btn-radio-color,
    .btn-radio-color:hover {
        color: #fff;
        background-color: rgb(50, 50, 50);
        border-color: rgb(50, 50, 50);
    }
    .btn-check:focus + .btn-radio-color {
        box-shadow: none;
    }

    .btn-ja {
        width: 90px;
    }
    .btn-en {
        width: 90px;
    }
    .btn-manual {
        width: 70px;
    }
    .btn-10 {
        width: 130px;
    }
    .btn-30 {
        width: 130px;
    }
}

.instance-table {
    width: 94%;
    margin: 30px 3%;
    text-align: center;

    th {
        width: 20%;
        padding: 10px 4px;
    }
    td {
        padding: 10px 4px;
    }
    
    .btn-status-reload {
        width: 65px;
        margin: 2px 5px;
        color: #fff;
        background-color: rgb(50, 50, 50);
        border-color: rgb(50, 50, 50);
    }
    .btn-status-reload:hover {
        color: #fff;
        background-color: rgb(0, 0, 0);
        border-color: rgb(0, 0, 0);
    }
    .btn-status-reload:disabled {
        color: #fff;
        background-color: rgb(120, 120, 120);
        border-color: rgb(120, 120, 120);
    }
    .btn-status-reload:focus {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
    }

    .btn-start-stop {
        width: 70px;
        margin: 2px 5px;
        color: #fff;
        background-color: rgb(0, 123, 255);
        border-color: rgb(0, 123, 255);
    }
    .btn-start-stop:hover {
        color: #fff;
        background-color: rgb(0, 105, 217);
        border-color: rgb(0, 105, 217);
    }
    .btn-start-stop:disabled {
        color: #fff;
        background-color: rgb(101, 176, 255);
        border-color: rgb(101, 176, 255);
    }
    .btn-start-stop:focus {
        box-shadow: 0 0 0 2px rgba(0, 105, 217, 0.25);
    }
}

.dialog {
    width: 700px;
    height: 300px;
    text-align: center;

    .dialog-input-area {
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        width:100%;

        .dialog-confirm {
            font-weight: bold;
            font-size: 20px;
            margin: 20px 0;
        }
        .dialog-name {
            font-size: 16px;
            margin: 20px 0;
        }
        .dialogOk {
            width: 100px;
            margin: 20px 10px;
        }
        .dialogCancel {
            width: 100px;
            margin: 20px 10px;
        }
    }
}