html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* keeps it above other content */
}

body {
    padding-top: 56px; /* prevents content from hiding under navbar */
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.btn-custom {
    background-color: #842c56;
    color: white;
    border-color: darkgray;
}

/* Saturday cells */
.fc .fc-day-sat {
    background-color: #f4e1f6;
}

/* Sunday cells */
.fc .fc-day-sun {
    background-color: #a9a6ba;
}
.fc .fc-daygrid-day.fc-day-today {
    background-color: #f0d360 !important;
}
.fc .fc-daygrid-day-number {
    color: #1b154a;
    text-decoration: none !important;
}
.fc .fc-col-header-cell-cushion {
    color: #1b154a;
    text-decoration: none !important;
}
.fc-daygrid-event {
    margin-bottom: 4px; /* spacing between stacked events */
    padding: 2px 4px; /* internal padding */
}

/* Date header for each day in list view */
.fc-list-day-text {
    color: #000000; /* your desired color */
    text-decoration: none; /* remove underline */
    cursor: default; /* optional: remove pointer cursor */
}

/* Event time text */
.fc-event-time {
    color: #000000;
}

/* Event title text */
.fc-event-title {
    color: #000000; /* or any color you want */
}


.btn-modern {
    background-color: #842c56;
    border: none;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 50rem; /* pill shape */
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .1);
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-decoration: none;
}
    .btn-modern:focus,
    .btn-modern:active,
    .btn-modern:hover {
        background-color: #6b2245; /* slightly darker */
        transform: translateY(-1px); /* subtle lift */
        text-decoration: none;
        color: #fff
    }

.btn-modern i {
    margin-right: 0.5rem;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #842c56; /* your project’s accent */
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .btn-home:hover {
        background-color: #6a2245; /* darker shade for hover */
        color: white;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .btn-home i {
        font-size: 1.1rem;
        /* Modern Table Styling */
        .table.modern-table
        /* Modern Table Styling */
        .table.modern-table
    }
/* Modern Table Styling */
.table.modern-table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
    color: #1b154a;
    border-radius: 12px;
    overflow: hidden;

}

.table.modern-table thead {
    background-color: #842c56; /* darker shade for contrast */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table.modern-table th,
.table.modern-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: middle;
}

.table.modern-table tbody tr {
    transition: background 0.3s ease;
}

    .table.modern-table tbody tr:hover {
        background-color: rgba(132, 44, 86, 0.1); /* subtle purple tint for desktop */
    }

.table.modern-table .btn {
    margin-right: 4px;
}
/* mobile stacked view */
@media (max-width: 768px) {
    .modern-table thead {
        display: none;
    }

    .modern-table,
    .modern-table tbody,
    .modern-table tr,
    .modern-table td {
        display: block;
        width: 100%;
    }

    .modern-table tr {
        margin-bottom: 1rem;
        background: #842c56;
        border-radius: 10px;
        padding: 0.5rem;
        color: white;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        transition: background 0.3s ease;
    }

        .modern-table td {
            padding: 0.5rem;
            text-align: left;
            background: #842c56; /* force td blocks to be purple */
            border: none;
        }

        .modern-table td::before {
            content: attr(data-label);
            font-weight: bold;
            display: block;
            margin-bottom: 0.25rem;
            opacity: 0.8;
            color: #f8d7e2;
        }

    /* Prevent white flash on tap */
    .modern-table tr,
    .modern-table td {
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile tap feedback */
        .modern-table tr:active {
            background-color: #5c1e3a !important; /* darker brand shade */
            color: white !important;
        }
}
.nav-tabs .nav-link {
    color: #1b154a; /* gray (Bootstrap secondary) */
}

    /* active tab */
    .nav-tabs .nav-link.active {
        color: #0d6efd; /* Bootstrap primary blue */
    }

.no-hover .dropdown-item:hover,
.no-hover .dropdown-item:focus,
.no-hover .nav-link.dropdown-toggle:hover,
.no-hover .nav-link.dropdown-toggle:focus {
    background-color: transparent !important;
    color: #a9a6ba
}