@font-face {
    font-family: 'Roboto-Medium';
    src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

body {
    background-color: var(--color-background);
    font-family: 'Roboto-Medium', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-main);
    font-family: 'Roboto-Medium', Arial, sans-serif;
}

p {
    color: var(--color-text-muted);
    font-family: 'Roboto-Regular', Arial, sans-serif;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;

    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-family: 'Roboto-Medium', Arial, sans-serif;
    font-size: 0.95rem;
}

.btn-main:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    text-decoration: none;
}

.btn-main:focus,
.btn-main.focus {
    box-shadow: 0 0 0 0.2rem var(--color-secondary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;

    background-color: var(--color-background);
    color: var(--color-text-muted);
    font-family: 'Roboto-Medium', Arial, sans-serif;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--color-text-main);
    text-decoration: none;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s ease;

    background-color: transparent;
    color: #dc2626;
    font-family: 'Roboto-Medium', Arial, sans-serif;
    font-size: 0.95rem;
}

.btn-danger:hover {
    background-color: rgba(220, 38, 38, 0.08);
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}