/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tooltip {
    position: relative;
    display: inline-block;
    background: #00aced;
    border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    -webkit-border-radius: 0.8em;
    color: #ffffff;
    font-weight: normal;
    line-height: 1.4em;
    margin-right: 5px;
    text-align: center;
    width: 1.4em;

}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: lighter;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Card Styles */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    font-weight: 600;
}

/* Form Styles */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.border-0 {
    border: none;
}

/* United Brand Styles */
.united-brand {
    color: #0056b3;
}

/* Mayflower Brand Styles */
.mayflower-brand {
    color: #00a850;
}

/* Table Styles */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}

.table th {
    border-top: none;
    background-color: #f8f9fa;
}

/* Footer Styles */
footer {
    border-top: 1px solid #dee2e6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
    
    .form-group.row {
        margin-bottom: 0;
    }
    
    .form-group.row > div {
        margin-bottom: 15px;
    }
}

/* Print Styles */
@media print {
    header, footer, .btn, .no-print {
        display: none !important;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .card {
        border: none;
        box-shadow: none;
    }
    
    .card-header {
        background-color: #f8f9fa !important;
        color: #333 !important;
    }
}