/* ── PMS Custom Toast Notifications ──────────────────────────────────────── */

#pms-toast-container {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    width: max-content;
    max-width: 90vw;
}

.pms-toast {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 340px;
    max-width: 520px;
    padding: 13px 14px 13px 16px;
    background: #262626;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    cursor: pointer;
    user-select: none;
    animation: pmsToastIn .28s cubic-bezier(.22, .61, .36, 1) both;
}

.pms-toast.pms-toast-out {
    animation: pmsToastOut .22s ease-in both;
}

.pms-toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.pms-toast-msg {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: #efefef;
    line-height: 1.45;
    word-break: break-word;
}

.pms-toast-close {
    flex-shrink: 0;
    color: #777;
    font-size: 15px;
    line-height: 1;
    padding: 3px 5px;
    border-radius: 5px;
    transition: color .15s, background .15s;
}

.pms-toast:hover .pms-toast-close {
    color: #ccc;
    background: rgba(255, 255, 255, .1);
}

@keyframes pmsToastIn {
    from { opacity: 0; transform: translateY(-20px) scale(.95); }
    to   { opacity: 1; transform: translateY(0)      scale(1);  }
}

@keyframes pmsToastOut {
    from { opacity: 1; transform: translateY(0)     scale(1);   }
    to   { opacity: 0; transform: translateY(-12px) scale(.95); }
}

/* ── PMS Form Controls ────────────────────────────────────────────────────── */

/* Inputs and textareas only — 1.5px darker border */
input.form-control,
textarea.form-control {
    border: 1.5px solid #b9b9b9;
    border-radius: 0 !important;
    box-shadow: none;
}

input.form-control:focus,
textarea.form-control:focus {
    border: 1.5px solid #6571ff;
    box-shadow: none;
    outline: none;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #b0b7c3;
    font-size: 0.875rem;
}

/* Dropdowns — same border as inputs, no glow on focus */
select.form-control {
    border: 1.5px solid #b9b9b9 !important;
    border-radius: 0 !important;
    color: #888888 !important;
    box-shadow: none !important;
}

select.form-control:focus {
    border-color: #6571ff !important;
    box-shadow: none !important;
    outline: none !important;
}

select.form-control option {
    color: #495057;
}

/* Input groups (date pickers, search appends, etc.) */
.input-group-text {
    border-radius: 0 !important;
    border: 1.5px solid #b9b9b9;
    box-shadow: none;
}

.input-group:focus-within input.form-control,
.input-group:focus-within .input-group-text {
    border-color: #6571ff;
}
