/* =====================================================
   PÁGINA DE BOTS
===================================================== */

.mz-page {
    margin: 15px 10px 0 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    overflow: hidden;
}

/* =====================================================
   HEADER
===================================================== */

.mz-page-header {
    height: 54px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #222;
    border-bottom: 1px solid #eee;
}

.mz-page-header .btn {
    margin-left: 0;
}

/* =====================================================
   BOTÃO TUTORIAL
===================================================== */

.btn-info {
    background: #2196f3;
    border-color: #2196f3;
    color: #fff;
}

.btn-info:hover {
    background: #1e88e5;
    border-color: #1e88e5;
}

.btn-xs {
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 3px;
}

/* =====================================================
   FILTROS
===================================================== */

.mz-filtros {
    min-height: 104px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    position: relative;
}

/* Campos */

.mz-input {
    width: 25%;
    position: relative;
}

.mz-input label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    color: #777;
    font-weight: 400;
}

.mz-input input,
.mz-input select {
    width: 100%;
    height: 35px;
    padding: 0 4px;
    border: 0;
    border-bottom: 2px solid #2196f3;
    outline: none;
    background: transparent;
    color: #222;
    font-size: 14px;
    box-sizing: border-box;
}

/* Campo Nome */

.mz-input input {
    border-bottom: 1px solid #ddd;
}

.mz-input input:focus {
    border-bottom: 2px solid #2196f3;
}

/* Select */

.mz-input select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #999 50%),
        linear-gradient(135deg, #999 50%, transparent 50%);

    background-position:
        calc(100% - 8px) 15px,
        calc(100% - 3px) 15px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

/* =====================================================
   BOTÕES CIRCULARES
===================================================== */

.btn-circular {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: none;
    border-radius: 50%;
    background: #2196f3;
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .20);
    transition: all .2s ease;
    margin-bottom: 0;
}

.btn-circular:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
    transform: translateY(-1px);
}

.btn-circular:active {
    transform: scale(.95);
}

/* Botão + */

.btn-circular.btn-add {
    background: #009688;
    font-size: 27px;
    font-weight: 300;
}

/* =====================================================
   SEÇÃO DOS BOTS
===================================================== */

.mz-section {
    margin: 20px 10px;
}

.mz-section-title {
    padding: 12px 15px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
}

/* =====================================================
   CARD DO BOT
===================================================== */

.mz-bot {
    background: #fff;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    overflow: hidden;
}

/* =====================================================
   HEADER DO BOT
===================================================== */

.mz-bot-header {
    min-height: 60px;
    padding: 12px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;
}

.mz-bot-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.mz-bot-type {
    margin-top: 3px;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

/* =====================================================
   CORPO DO BOT
===================================================== */

.mz-bot-body {
    min-height: 65px;
    padding: 12px 18px;

    display: flex;
    align-items: center;
    gap: 12px;
}

/* =====================================================
   STATUS
===================================================== */

.mz-status-icon {
    font-size: 18px;
    color: #4caf50;
}

.mz-online {
    font-size: 13px;
    color: #4caf50;
    font-weight: 500;
}

.mz-identificacao {
    margin-top: 3px;
    font-size: 11px;
    color: #999;
}

/* =====================================================
   NENHUM BOT
===================================================== */

.mz-empty {
    margin-top: 10px;
    padding: 35px;
    text-align: center;
    color: #999;
    font-size: 13px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 900px) {

    .mz-filtros {
        flex-wrap: wrap;
    }

    .mz-input {
        width: calc(50% - 12px);
    }

}

@media (max-width: 600px) {

    .mz-input {
        width: 100%;
    }

    .mz-filtros {
        gap: 15px;
    }

    .mz-bot-header {
        align-items: flex-start;
        gap: 10px;
    }

}