body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    /*overflow: hidden;*/
}

.container > * {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-top: 0;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    /*background: #555;*/
    opacity: 0.8;
}

.icon-btn {
    width: 1.25em;
    height: 1.25em;
    border-radius: 0.625em;
    padding: 0;
    font-size: 1.5em;
    text-align: center;
}

.primary-btn.warning {
    background-color: rgb(255, 70, 70);
}

.secondary-btn {
    background: #ccc;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

hr {
    color: white;
    background-color: #ccc;
    height: 0.75px;
}

.customer-actions {
    position: relative;
    display: inline-block;
}

.customer-actions button {
    margin-left: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 12px 0;
    border-radius: 12px;
}

.dropdown-content > button {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: calc(100% - 20px);
    text-align: left;
    border: none;
    background: none;
}

.dropdown-content > button:hover {
    background-color: #f1f1f1;
}

.dropdown-content > button.warning {
    color: red;
}

.customer-actions:hover .dropdown-content {
    display: block;
}

.customer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-header h2 {
    margin: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.overlay-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    display: none;
}

.overlay-content input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.overlay-content div {
    margin-top: 10px;
}

.overlay-content button {
    margin-top: 10px;
}

.pill {
    background: #333;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.8em;
}

.schedule-input {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.schedule-time-input {
    flex: 1;
    margin-right: 10px;
}

.toast-root {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.toast-pill {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(100%);
    padding: .65rem 1.4rem;
    border-radius: 9999px;
    background: #111;
    color: #fff;
    font: 500 0.9rem/1 sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4, .0, .2, 1), opacity .35s;
}

.toast-pill.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-pill.hide {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
}