﻿a {
    text-decoration:none;
}

.Truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-reset {
    all: unset; /* removes ALL browser default styles */
    cursor: pointer; /* restore pointer cursor */
    display: inline-block; /* optional, but usually desired */
}

input,
textarea,
select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    input:focus {
        outline: none;
        border-color: #1a4fdc;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(26, 79, 220, 0.15);
    }

