/* ================== SAMASHOP ADMIN CUSTOM STYLES =================== */

.sm-input {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #161b19;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 2rem;
    background-color: #dedede;
    border: none;
    box-shadow: 0 0.1rem 0.25rem rgb(0 0 0 / 8%);
}

.sm-input:focus {
    outline: none;
    background-color: #f8f9fa;
    box-shadow: 0 0.2rem 0.5rem rgba(47, 167, 71, 0.2);
}

.logfoot {
    border-radius: 100% 100% 0 0;
    bottom: 0;
    background-color: var(--color-primary);
    height: 22vh;
}

/* Animations pour les notifications */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Amélioration des badges */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 600;
    border-radius: 0.25rem;
}

/* Amélioration des boutons */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
}
