/* Global Styles for RAT Events */

/* Additional Bootstrap Overrides */
.navbar {
    background-color: var(--tertiary-color) !important;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Login Container */
.login-container-wrapper {
    padding-top: 4rem !important;
}

.login-container {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 55, 92, 0.15);
}

.card-header {
    /*background-color: var(--primary-color);*/
    color: var(--tertiary-color);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
}

.card-img-top {
    height: 350px !important;
}

/* Banner Card */
.banner-card {
    background-image: url('../images/photo-1584443348278-4789e86c7373');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 300px !important;
    width: 80% !important;
}

.banner-card .banner-logo {
    width: 100px;
}

.banner-card .banner-header {
    color: #00375c;
    max-width: 80%;
}

.banner-card .banner-register-btn {
    width: 180px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: black;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: bold !important;
}

.banner-card .banner-register-btn:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Table Styles */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(0, 55, 92, 0.05);
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* Stats Card */
.stats-card .card-body {
    display: flex;
    flex-direction: column;

    h5 {
        margin-top: 30px !important;
    }
}

/* Form Styles */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 55, 92, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-primary {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

/* Modal Styles */
.modal-header {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
}

.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Loading Spinner */
.spinner-border-primary {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

@media (min-width: 576px) {
    .header-dropdown-item {
        padding-left: 20px !important;
    }

    .header-dropdown-item:hover {
        background-color: white !important;
    }
}

.header-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-friendly-btn {
    display: flex;
    justify-content: space-around;
}

.mobile-friendly-btn a {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin: 10px;
}

.rat-competition {
    justify-content: space-around;
}

.frequently-ask {
    padding: 10px;
    background-color: whitesmoke;
}

.about-get-involved-header {
    padding: 20px 20px 0;
    background-color: whitesmoke;
}

.footer-email {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-email a {
    color: whitesmoke !important;
}

.header-spacing {
    padding-left: 30px;
    padding-right: 30px;
}


@media (max-width: 576px) {
    .venue-card {
        padding: 10px;
    }

    .event-badge {
        font-size: 12px;
    }
}

/* News Page Styles */
.news-card-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
}

/* News Listing Page */
.news-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.news-header {
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    color: whitesmoke;
    text-align: center;
    padding: 80px 0 80px;
}

.news-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: whitesmoke;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    min-height: 450px !important;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 55, 92, 0.2);
    text-decoration: none;
}

.news-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    color: #00375c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #999;
}

.news-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-author i {
    color: #00375c;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-date i {
    color: #0e1b2b;
}

.no-news {
    text-align: center;
    padding: 4rem 0;
}

.no-news i {
    font-size: 4rem;
    color: #00375c;
    margin-bottom: 1rem;
}

.no-news p {
    color: #666;
    font-size: 1.2rem;
}

/* Single News Page */
.single-news-page {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 4rem 0;
}

.single-news-header {
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.single-news-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.single-news-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
}

.single-news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-news-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.single-news-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.single-news-body {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

.single-news-body h2 {
    color: #00375c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-news-body h3 {
    color: #0e1b2b;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.single-news-body p {
    margin-bottom: 1rem;
}

.single-news-body ul,
.single-news-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.single-news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.single-news-body blockquote {
    border-left: 4px solid #00375c;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.single-news-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.single-news-share h3 {
    color: #00375c;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.related-news {
    margin-top: 4rem;
}

.related-news h3 {
    color: #00375c;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00375c;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0e1b2b;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-header h1,
    .single-news-header h1 {
        font-size: 2rem;
    }

    .single-news-content {
        padding: 1.5rem;
    }

    .single-news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}

/* Previous Events Gallery Section */
.previous-events-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00375c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00375c, #0e1b2b);
    border-radius: 2px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 55, 92, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 55, 92, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 55, 92, 0.95), rgba(0, 55, 92, 0.7), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00375c, #0e1b2b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 55, 92, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 55, 92, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .previous-events-gallery {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-overlay {
        padding: 20px 15px 15px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.85rem;
    }

    .btn-view-all {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-header h2 {
        font-size: 1.75rem;
    }

    .gallery-header p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* Loading Animation for Images */
.gallery-item img {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hover Effect Enhancement */
.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 55, 92, 0.3), rgba(14, 27, 43, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    z-index: 2;
}

.news-card-content {
    padding: 8px;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    color: whitesmoke !important;
}

.contact-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.contact-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-wrapper {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-wrapper h2 {
    color: #00375c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-text h4 {
    color: #00375c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
    color: #666;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
}

.contact-text a:hover {
    color: #00375c;
    text-decoration: underline;
}

/* Social Media Section */
.contact-social {
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.contact-social h4 {
    color: #00375c;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00375c 0%, #0e1b2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 55, 92, 0.3);
    color: white;
}

.social-link svg {
    fill: white;
}

/* Contact Image Section */
.contact-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 55, 92, 0.95) 0%, transparent 100%);
    padding: 2rem;
}

.contact-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-info-wrapper {
        padding: 30px;
        margin-bottom: 2rem;
    }

    .contact-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-content {
        padding: 40px 0;
    }

    .contact-info-wrapper {
        padding: 20px;
    }

    .contact-info-wrapper h2 {
        font-size: 1.75rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-social-icons {
        justify-content: center;
    }

    .contact-image-wrapper {
        min-height: 350px;
    }
}

.single-news-description {
    overflow: hidden;
}

/*!* ===== Admin Dashboard Custom Styles ===== *!*/


/* Common cell alignment */
/*.table-responsive {*/
/*    min-height: 350px;*/
/*}*/

.table-responsive table td,
.table-responsive table th {
    vertical-align: middle;
    white-space: nowrap;
}


.truncate {
    max-width: 450px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slightly smaller truncation on smaller screens */
@media (max-width: 768px) {
    .truncate {
        max-width: 250px;
    }
}
