@font-face {
    font-family: 'Pastiche Grotesque';
    src: url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Regular.woff2') format('woff2'),
         url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Regular.woff') format('woff');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Pastiche Grotesque';
    src: url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Medium.woff2') format('woff2'),
         url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Medium.woff') format('woff');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Pastiche Grotesque';
    src: url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-SemiBold.woff2') format('woff2'),
         url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-SemiBold.woff') format('woff');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Pastiche Grotesque';
    src: url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Bold.woff2') format('woff2'),
         url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Pastiche Grotesque';
    src: url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Black.woff2') format('woff2'),
         url('/static/fonts/pastiche-grotesque/PasticheGrotesqueTrial-Black.woff') format('woff');
    font-weight: 900; /* Black */
    font-style: normal;
}

.trust-accounts-text {
    font-family: 'Pastiche Grotesque', sans-serif;
}

.trust-accounts-text h2 {
    font-weight: 500 !important; /* SemiBold weight */
    font-size: 80px !important;
}

.trust-accounts-text p {
    font-weight: 400; /* Regular weight */
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem !important;

}
.trust-accounts-section {
    background-color: #1D418E; /* Dark Blue */
    color: white;
    max-width: 100%; /* Ensure the container spans full width */
}

.trust-accounts-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0; /* Remove any internal padding */
    margin: 0; /* Remove auto centering margins to stretch full width */
}

.trust-accounts-text {
    flex: 1;
    padding: 0 40px;
}

.trust-accounts-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.trust-accounts-text p {
    font-size: 1.2rem;
}

.trust-accounts-image {
    flex: 1;
    padding: 0; /* Remove space around the image */
    margin: 0; /* Ensure no margin around this div */
}

.trust-accounts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the area without distortion */
    border-radius: 0; /* Remove the rounded corners from the image */
}


.navbar .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600; /* Semi-bold */
}

.navbar .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600; /* Set font weight to 600 */
}

.intro {
    padding-bottom: 1rem !important; /* Reduce bottom padding */
}

.intro p {
    font-size: 20px;
}

.intro h3 {
    font-size: 25px;
}
.intro ul {
    font-size: 20px;
}

.login-section {
    background-color: #D9DAE3;
    padding-top: 1rem !important; /* Reduce top padding */
}

.login-section p {
    font-size: 20px;
    font-weight: 500;
}

.login-section h2 {
    font-size: 35px;
    font-width: 500;
    font-family: 'Pastiche Grotesque', sans-serif;
}

.custom-input {
    height: 50px; /* Makes input fields taller */
}

.custom-button {
    width: 100%; /* Makes the button full-width */
    height: 45px; /* Makes the button taller */
}

.trust-account-box {
    display: block;
    border-radius: 10px;
    text-decoration: none;
    max-width: 400px;
    transition: transform 0.2s ease-in-out;
}

.trust-account-box:hover {
    transform: scale(1.05);
}

.trust-account-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    margin-top:40px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

}

.trust-account-text {
    font-weight: bold;
    color: black;
    font-size: 25px;
    margin-bottom: 10px;
    font-family: 'Pastiche Grotesque', sans-serif;
}
.register-section h3 {
    font-family: 'Pastiche Grotesque', sans-serif;
    font-size: 35px;
    font-weight: bold;
}
.trust-account-arrow {
    font-size: 30px;
    color: black;
}

.footer {
    background-color: black;
    color: white;
    padding: 30px 0;
    font-size: 14px;
}

/* Override Bootstrap container max-widths for consistency */
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
    }
}


.footer .container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 200px;
}



.social-icons a {
    color: white;
    font-size: 24px;
    margin-left: 15px;
    text-decoration: none;
}

.footer-line {
    border: 1px solid #666;
    margin: 20px 0;
}

.footer-bottom {
    text-align: left;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Container for the table */
.table-container {
    background-color: #fff; /* Matches white box theme */
    padding: 20px; /* Matches Bootstrap p-5 padding */
    border-radius: 10px; /* Consistent border-radius */
    margin: 0 auto; /* Center the table content inside the container */
}

/* Stylish table */
.stylish-table {
    width: 100%; /* Make the table span the full width of the container */
    border-collapse: collapse; /* Remove gaps between borders */
    font-family: 'Pastiche Grotesque', sans-serif;
}

/* Table header styling */
.stylish-table thead th {
    background-color: #d2d700; /* Yellow header background */
    color: #333; /* Dark text for contrast */
    text-align: left;
    padding: 12px; /* Spacing for table header cells */
    font-weight: 600; /* Make header bold */
    font-size: 1rem;
    border-bottom: 2px solid #ccc; /* Bottom border for the header */
}

/* Table rows styling */
.stylish-table tbody tr {
    border-bottom: 1px solid #eee; /* Light separator between rows */
    transition: background-color 0.3s ease; /* Hover transition for smooth effect */
}

/* Hover effect for rows */
.stylish-table tbody tr:hover {
    background-color: #f9f9f9; /* Light gray hover color */
}

/* Table cell styling */
.stylish-table td {
    padding: 12px 10px; /* Consistent cell padding */
    font-size: 0.95rem;
    color: #555; /* Subtle gray color for text */
}

/* Dynamic Status Styling */
.status {
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 12px; /* Padding for the badge */
    border-radius: 6px; /* Rounded corners for the badge */
    color: #fff; /* Text color for statuses */
    display: inline-block; /* Behaves like a badge */
    text-align: center;
}

/* Enhancements for specific status colors */
.status.sent {
    background-color: #ffc107; /* Amber for 'Sent' */
}

.status.completed {
    background-color: #28a745; /* Green for 'Completed' */
}

.status.delivered {
    background-color: #007bff; /* Blue for 'Delivered' */
}

/* Responsive Styling: Adjust for smaller screens */
.table-responsive {
    overflow-x: auto;
    border-radius: 10px; /* Ensure container has consistent rounded borders */
}

/* Ensure entire table has rounded borders */
.stylish-table {
    border-radius: 10px;
    overflow: hidden;
}

tbody, td, tfoot, th, thead, tr {

    border: 2px solid #d7d7d7 !important;
}


.trust-grid {
    display: flex;
    justify-content: space-between; /* Distribute items across full width */
    align-items: center; /* Center items vertically */
    gap: 20px; /* Small gap between the two trust types */
    padding: 20px 0; /* Add vertical spacing */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.grid-item {
    border: 2px solid #FFCF00;
    padding: 20px 30px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: row; /* Place icon and text side by side */
    align-items: center; /* Center elements vertically inside each item */
    gap: 15px; /* Space between icon and text */
    flex: 1; /* Make each item take equal width */
    max-width: calc(50% - 10px); /* Ensure two items fit in one row with gap */
}

.icon {
    display: block;
    flex-shrink: 0; /* Prevent icon from shrinking */
    color: #d2d700; /* Match your theme color */
}

.icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.grid-item p {
    font-size: 18px; /* Font size for the text */
    font-family: 'Pastiche Grotesque', sans-serif;
    font-weight: 600;
    color: #333; /* Standard text color */
    margin: 0; /* Remove additional margin */
    flex-grow: 1; /* Allow text to take remaining space */
}

/* Table Enhancement Styles */

/* Sortable header styling */
.stylish-table thead th {
    position: relative;
}

.stylish-table thead th.sortable:hover {
    background-color: #c5c500 !important; /* Slightly darker yellow on hover */
}

.sort-indicator {
    float: right;
    margin-left: 8px;
}

.sort-indicator i {
    color: #333;
    transition: opacity 0.3s ease;
}

/* Filter row styling */
.filter-row th {
    background-color: #f8f9fa !important;
    border-top: 1px solid #dee2e6 !important;
    padding: 8px !important;
}

.filter-row .form-control-sm {
    font-size: 0.85rem;
    padding: 4px 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.filter-row .form-control-sm:focus {
    border-color: #d2d700;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(210, 215, 0, 0.25);
}

.filter-row .form-control-sm::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

/* Enhanced table responsiveness */
@media (max-width: 768px) {
    .filter-row .form-control-sm {
        font-size: 0.8rem;
        padding: 2px 6px;
    }
    
    .sort-indicator {
        display: none; /* Hide sort arrows on mobile for space */
    }
}

/* Table container improvements */
.stylish-table {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid #dee2e6;
}

/* Improved table cell alignment for badges */
.stylish-table td .badge {
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

/* Status badge improvements */
.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

/* Loading indicator for table operations */
.table-loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.table-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}