/*
 * styles.css — Shared base styles for the Teams Meeting booking site.
 * Page-specific styles are kept inline in each file.
 */

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Base ===== */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
    color: #222;
    -webkit-font-smoothing: antialiased;
}

/* ===== Links ===== */
a {
    color: #6264a7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== Shared button base ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-filled {
    background-color: #6264a7;
    color: #fff;
    border-color: #6264a7;
}

.btn-filled:hover {
    background-color: #4f5194;
    border-color: #4f5194;
}

.btn-ghost {
    background-color: transparent;
    color: #6264a7;
    border-color: #6264a7;
}

.btn-ghost:hover {
    background-color: #6264a7;
    color: #fff;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-muted  { color: #777; }
.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;
}
