/* ===================================
   Baha'i Faith Tanzania - Custom Styles
   Color Palette:
   - Coffee: #6F4E37
   - Cream: #FFFDD0
   - Light Blue: #ADD8E6
   - White: #FFFFFF
   =================================== */

:root {
    --coffee: #6F4E37;
    --cream: #FFFDD0;
    --light-blue: #ADD8E6;
    --white: #FFFFFF;
    --coffee-dark: #5a3e2c;
    --coffee-light: #8b6347;
    --light-blue-dark: #8bc4d4;
    --text-dark: #333333;
    --text-muted: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.brand-text {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee);
    transition: font-size 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--coffee);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--coffee);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--coffee);
}

.separator {
    color: var(--text-muted);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    margin-top: 76px;
    position: relative;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.7), rgba(173, 216, 230, 0.5));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-primary {
    background-color: var(--coffee);
    border-color: var(--coffee);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--coffee-dark);
    border-color: var(--coffee-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(111, 78, 55, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--coffee);
    transform: translateY(-2px);
}

/* Events Banner */
.events-banner {
    background: linear-gradient(135deg, var(--coffee), var(--coffee-light));
    color: var(--white);
    padding: 1rem 0;
}

.events-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.events-scroll::-webkit-scrollbar {
    display: none;
}

.event-item {
    flex: 0 0 auto;
}

/* ===================================
   Section Styles
   =================================== */

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--coffee);
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--coffee), var(--light-blue));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===================================
   About Section
   =================================== */

/* About section base styles */
#about p {
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; /* Standard base font size */
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 400; /* Normal weight for all paragraphs */
}

/* First paragraph with lead class - now matches other paragraphs */
#about .lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Feature card paragraphs */
#about .feature-card p {
    font-size: 0.95rem; /* Slightly smaller for cards */
    text-align: center; /* Center align for cards */
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

#about h3 {
    color: var(--coffee);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(111, 78, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coffee), var(--coffee-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

/* ===================================
   Library Section
   =================================== */

.search-box {
    position: relative;
}

.search-box input {
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--light-blue);
    border-radius: 50px;
    font-size: 1rem;
}

.search-box input:focus {
    border-color: var(--coffee);
    box-shadow: 0 0 0 0.2rem rgba(111, 78, 55, 0.15);
}

.search-box i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coffee);
    font-size: 1.2rem;
}

.category-filter {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.category-filter h5 {
    color: var(--coffee);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.category-filter ul li {
    margin-bottom: 0.5rem;
}

.category-filter ul li a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-filter ul li a:hover,
.category-filter ul li a.active {
    background: var(--cream);
    color: var(--coffee);
    padding-left: 1.5rem;
}

.resource-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--coffee);
}

.resource-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.15);
}

.resource-icon {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coffee);
    font-size: 1.5rem;
}

.resource-card-content {
    flex: 1;
    min-width: 0;
}

.resource-card h5 {
    color: var(--coffee);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.resource-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.btn-coffee {
    background-color: var(--coffee);
    color: white;
    border: none;
}

.btn-coffee:hover {
    background-color: #5a3e2c;
    color: white;
}

.btn-outline-coffee {
    color: var(--coffee);
    border-color: var(--coffee);
}

.btn-outline-coffee:hover {
    background-color: var(--coffee);
    border-color: var(--coffee);
    color: var(--white);
}

/* Responsive adjustments for resource cards */
@media (max-width: 768px) {
    .resource-card {
        padding: 0.75rem;
    }
    
    .resource-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .resource-card h5 {
        font-size: 0.85rem;
    }
    
    .resource-card-meta {
        font-size: 0.7rem;
    }
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 150px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 78, 55, 0.9), rgba(173, 216, 230, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0 1rem;
}

/* ===================================
   Blog Section & Single Post
   =================================== */

/* ===================================
   Blog Post Header - Modern Redesign
   =================================== */
.post-header {
    position: relative;
    margin-bottom: 4rem;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.post-header-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    position: relative;
    overflow: hidden;
}

.post-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.post-header:hover .post-header-image img {
    transform: scale(1.02);
    opacity: 0.9;
}

.post-header-content {
    max-width: 900px;
    margin: -100px auto 0;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.post-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.post-header .category {
    background: var(--coffee);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.post-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.post-header .post-excerpt {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.post-meta {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.95rem;
}

.post-meta-item i {
    margin-right: 0.5rem;
    color: var(--coffee);
    font-size: 1.1em;
}

.author-info {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.1);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.post-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .post-header-content {
        margin: -50px 2rem 2rem;
        padding: 2rem;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
    
    .post-header .post-excerpt {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .post-header-image {
        height: 350px;
    }
    
    .post-header-content {
        margin: -30px 1rem 1.5rem;
        padding: 1.5rem;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
        margin: 1rem 0;
    }
    
    .post-header .post-excerpt {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .author-info {
        margin: 0 0 1rem 0;
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .post-header {
        padding: 5rem 0 3rem;
    }
    
    .post-header h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 767.98px) {
    .post-header {
        padding: 4rem 0 2.5rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    
    .post-meta {
        gap: 0.8rem;
    }
    
    .post-meta span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

.post-meta i {
    margin-right: 0.5rem;
    color: var(--coffee-light);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 2rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Featured Image */
.featured-image-container {
    position: relative;
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.featured-image-container:hover .featured-image {
    transform: scale(1.02);
}

/* Image Caption */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-image-container:hover .image-caption {
    opacity: 1;
}

.related-posts {
    margin: 4rem 0 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-posts h3 {
    color: var(--coffee);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons .btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}

/* Blog Listing */

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(111, 78, 55, 0.15);
    border-color: rgba(111, 78, 55, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--coffee);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h4 {
    color: var(--coffee);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: var(--coffee-dark);
}

.blog-content p {
    color: var(--text-dark);
    flex-grow: 1;
}

.read-more {
    color: var(--coffee);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* ===================================
   Contact Section
   =================================== */

.contact-info {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--coffee);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h5 {
    color: var(--coffee);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--coffee);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--light-blue);
    color: var(--coffee);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--coffee);
    box-shadow: 0 0 0 0.2rem rgba(111, 78, 55, 0.15);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, var(--coffee), var(--coffee-dark));
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cream);
    padding-left: 0.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--coffee);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-top:hover {
    background: var(--coffee-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ===================================
   Utilities
   =================================== */

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

.text-coffee {
    color: var(--coffee);
}

.bg-coffee {
    background-color: var(--coffee);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .language-switch {
        margin-top: 1rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-banner h5 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Loading States
   =================================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}
