body {
    background-color: #f0f4f8;
    color: #1f2937;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1rem);
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

div#login {
    display:none;
    position:fixed;
    z-index:100;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
    backdrop-filter: blur(5px);
}

div#customer-page {
    display:none;
}

.btn {
    transition: all 0.3s;
    display:flex;
    align-items: center;
    gap:.4rem;
}

.btn:hover {
    background-color: #2563eb;
    color: #fff;
}

button.btn svg {
    display:inline-block;
    height:1.25rem;
}

.container {
    width: 100%;
    max-width: 100% !important;
    margin: auto;
}

table#customers tbody tr:hover {
    cursor:pointer;
    background-color:#F8F8F8;
}
table#customers tbody tr td {
    word-break: break-word;
}

input, textarea {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem !important;
    border-radius: .25rem;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

input:focus {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    outline: none;
}

img#logo {
    width:16rem;
    cursor:pointer;
}

div.treatment p[data-name='username'] {
    margin-top:.75rem;
    font-size:.75rem;
    color:#00000080;
}

div#username {
    font-size:.75rem;
    color:#00000080;
}

div#search-clear {
    display:none;
    position:absolute;
    right:0;
    top:0;
    height:100%;
}

div.border-search {
    padding-bottom:1rem;
    margin-bottom:3rem;
    border-bottom:1px solid #F0F0F0;
}

div.treatment-buttons {
    position:absolute;
    bottom:1.5rem;
    right:1.5rem;
    width:auto;
}
div.treatment-buttons > button {
    width:initial;
}

div#notification-wrapper {
    position:fixed;
    bottom:1rem;
    right:1rem;
    max-width:20rem;
    width:100%;
    z-index:200;
}
div#notification-wrapper > div.notification {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
    width:100%;
}
div#notification-wrapper > div.notification:not(:last-child) {
    margin-bottom:.5rem;
}

@media (max-width:767px) {
    div#notification-wrapper {
        max-width:initial;
        width:initial;
        left:.75rem;
        right:.75rem;
        bottom:.75rem;
    }
    div.treatment-buttons {
        position:relative;
        bottom:initial;
        right:initial;
    }
}

div#version-info {
    bottom:0;
    width:100%;
    text-align:center;
    padding:.75rem 0;
    font-size:.75rem;
    color:#00000080;
}