body {
    height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
}

main {
    position: relative;
    height: calc(100vh - 80px);
    width: 100%;
    top: 80px;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.buttons-field {
    top: 100px;
    height: 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn {
    border-radius: 18px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.btn-color-red {
    color: #df0000;
    border: 2px solid #df0000;
}

.btn-color-orange {
    color: #dc4d00;
    border: 2px solid #dc4d00;
}

.btn-color-grey {
    color: #8f8f8f;
    border: 2px solid #8f8f8f;
}

.btn-color-yellow {
    color: #cece00;
    border: 2px solid #cece00;
}

.btn-color-purple {
    color: #9500e6;
    border: 2px solid #9500e6;
}

.btn-color-blue {
    color: #0084ff;
    border: 2px solid #0084ff;
}

.btn-color-green {
    color: #00de38;
    border: 2px solid #00de38;
}

.btn:hover {
    color: white;
    border: 2px solid white;
}

.commands-field {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.commands-info {
    height: 100px;
    width: 80%;
    background-color: var(--item-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commands-search {
    outline: none;
    border: 1px solid grey;
    border-radius: 6px;
    padding: 0 10px;
    color: grey;
    background-color: transparent;
    height: 40%;
    width: 40%;
}

.commands-table-container {
    height: 80%;
    width: 80%;
    background-color: var(--item-color);
    padding: 0 25px;
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
}

.commands-table thead tr {
    border-bottom: 1px solid var(--text-grey-color);
}

.commands-table th {
    width: 25%;
    color: var(--text-grey-color);
    padding-bottom: 20px;
}

.commands-table td {
    height: 40px;
    color: var(--text-grey-color);
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
}

.commands-table tbody tr:hover {
    background-color: #272727;
}

.status-green i {
    color: green;
}

.status-orange i {
    color: orange;
}

.status-red i {
    color: red;
}