html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

.table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    border-radius: 8px; 
    overflow: hidden; 
}

    
    .table thead th {
        background-color: #343a40; 
        color: #ffffff; 
        font-weight: 600;
        padding: 15px 20px;
        text-align: left;
        border: none; 
        letter-spacing: 0.5px;
    }


    .table tbody tr {
        transition: background-color 0.3s ease;
    }

       
        .table tbody tr:hover {
            background-color: #f1f1f1; 
        }


    .table tbody td {
        padding: 12px 20px;
        border-bottom: 1px solid #e0e0e0; 
        color: #333333; 
        vertical-align: middle;
    }

    .table tbody tr:last-child td {
        border-bottom: none;
    }

p a[asp-action="Create"], p a[href*="Create"] {
    display: inline-block;
    background-color: #28a745; 
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

    p a[asp-action="Create"]:hover, p a[href*="Create"]:hover {
        background-color: #218838;
    }


.table .btn {
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 5px; 
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
}


.btn-secondary { 
    background-color: #6c757d;
}

.btn-info { 
    background-color: #17a2b8;
}

.btn-warning { 
    background-color: #ffc107;
}
