﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}



.seatI {
    margin: 4px;
    float: left;
    width: 25px;
    height: 25px;
}




:root {
    --primary: #f57c2c;
    --primary-light: #ff9a4d;
    --primary-soft: #fff3eb;
    --bg-main: #f6f7fb;
    --card-bg: #ffffff;
    --text-dark: #2c2c2c;
    --text-muted: #7a7a7a;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --border-soft: #f0f0f0;
}

body {
    background: var(--bg-main);
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-dark);
}


.app-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

    .app-card:hover {
        transform: translateY(-2px);
    }

.btn-app-primary {
    background: linear-gradient(135deg, #f57c2c, #ff9a4d);
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 6px 18px;
    font-size: 14px;
}

    .btn-app-primary:hover {
        opacity: 0.9;
    }

.btn-app-outline {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 25px;
    padding: 6px 16px;
}

.badge-pill-soft {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-approved {
    background: #e6f7ee;
    color: #28a745;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
}

.table-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

    .table-modern th {
        background: #fafafa;
        border: none;
        font-weight: 600;
    }

    .table-modern td {
        border-top: 1px solid #f1f1f1;
    }

.navbar-app {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
}
