.icon-buttons-bar {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}
.admin-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0;
    background: #efefef;
    border-top: 4px solid #ddd;
    z-index: 10;
}

body:has(.admin-footer) {
    padding-bottom: calc(78px + 1rem);
}

body:has(.admin-footer) .toast-message-sticky-container {
    transform: translateY(-78px);
}
.settings-panel {
    border: solid 1px #ddd;
    border-radius: 4px;
    margin-bottom: 2rem;
    
    h3 {
        font-size: 1.5rem;
        font-weight: bold;
        padding: 1rem 2rem;
        margin: 0;
        background: #f9f9f9;
        border-bottom: solid 1px #ddd;
    }
    
    h3 ~ * {
        margin: 1rem 2rem;
    }
    
    .form-group:last-child {
        margin-bottom: 0;
    }
    
    .settings-body-split {
        display: flex;
        justify-content: space-between;
        
        .form-group {
            width: calc(50% - 1rem);
        }
    }
    
    .ui-kit-toggle-switch-field {
        .ui-kit-toggle-switch-field__input-container {
            flex-direction: row-reverse;
        }
        
        .ui-kit-toggle-switch-field__label {
            margin-left: 0;
        }
    }
}

.change-status {
    display: inline-block;
    border-radius: 50px;
    border: solid 1px #ddd;
    padding: 0.25rem 1rem;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-weight: bold;
    color: #777;
}

.task-translations {
    
    header {
        display: grid;
        grid-template-columns: 5fr 5fr 1fr;
        gap: 1rem;
        border-bottom: solid 1px #ddd;
        
        div {
            font-weight: bold;
        }
    }
    
    .task-type {
        display: grid;
        grid-template-columns: 5fr 5fr 1fr;
        gap: 1rem;
        border-bottom: solid 1px #ddd;
        padding: 2rem 0 1rem 0;
    }
    
    .task-type:last-child {
        border-bottom: none;
    }
    
    .task-type-column:last-child {
        
        .form-control {
            height: 60px;
            width: 70px;
        }
    }
    
    .input-group {
        margin-bottom: 1rem;
    }
    
    .input-group-addon {
        min-width: 180px;
        text-align: start;
    }
}

.settings-loading {
    background: linear-gradient(0.25turn, #fff, #eee);
    background-size: 200% 200%;
    height: 64px;
    animation: loading 2s ease infinite;
    color: #ccc;
    font-size: 1.25rem;
    align-content: center;
    text-align: center;
}

@keyframes loading {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.message-task-label {
    .input-group-addon {
        min-width: 180px;
        text-align: start;
    }
}
