@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


:root {
  --primary-color: #22389A;
  /* Main blue */
  --primary-light: #64B5F6;
  /* Lighter blue for hover */
  --primary-dark: #1976D2;
  /* Darker blue for active states */
  --primary-subtle: #E3F2FD;
  /* Very light blue for backgrounds */
  --text-primary: #1565C0;
  /* Blue text color */
  --accent-light: #BBDEFB;
  /* Light blue accent */
}

th {
  font-size: 14px;
  font-weight: 600;
}

td {
  font-size: 14px;
}

.carousel-item {
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  bottom: 0;
  text-shadow: none;
  width: 100%;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 38%);
  height: 100%;
}

.carousel-caption h1 {
  font-size: 4rem;
  animation: fadeInDown 2s ease-in-out;
}

.carousel-caption p {
  font-size: 1.5rem;
  animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-dash{
  margin-top: 3em;
}

.navbar-brand img {
  height: 50px;
}

.about-us {
  background: url(../assets/images/obi-bg.jpg);
  padding: 3rem 0;
  color: #fff;
  background-attachment: fixed;
}

.about-us h2 {
  color: #fff;
}

.header-overlay {
  background: #fff;
  transition: background 0.3s linear;
}

.header-overlay.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(33, 150, 243, 0.2);
} */

.card img {
  height: 300px;
  object-fit: cover;
  overflow: hidden;
}

.card-body {
  padding: 1rem;
}

.card-body .btn {
  color: white;
  background-color: #007bff;
  border: none;
  transition: background-color 0.3s ease;
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.card-text {
  font-size: 0.9rem;
  color: #fff;
}

.obituary-listing .card-text {
  color: #000;
}

.obi-search .form-control {
  height: 39px;
  color: #555;
}

.obituary-image-container img {
  border-radius: 9px;
}

.thumbnail {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 75%);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.thumbnail:hover .overlay {
  opacity: 1;
}

.btn-view-more {
  background-color: #ffffff;
  color: #343a40;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-view-more:hover {
  background-color: #343a40;
  color: #ffffff;
}

.thumbnail {
  perspective: 1000px;
}

.thumbnail-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  /* Maintains square aspect ratio */
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.thumbnail:hover .thumbnail-inner {
  transform: rotateY(180deg);
}

.thumbnail-front,
.thumbnail-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.thumbnail-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-back {
  background-color: var(--primary-color);
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: rotateY(180deg);
  padding: 10px;
}

.thumbnail-back h5 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.thumbnail-back p {
  font-size: 18px;
  margin: 0;
  padding: 0 1em;
}

.thumbnail a {
  text-decoration: none;
  color: inherit;
}

.flag-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 150px;
  /* Set height for thumbnails */
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.flag-thumbnail:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.flag-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0D6EFD;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.footer img {
  filter: none;
  max-height: 60px;
  width: auto;
}

.flag-thumbnail:hover .flag-overlay {
  opacity: 1;
}

.flag-section {
  background-color: #D1D3D6;
}

.video-part {
  background: linear-gradient(rgba(33, 150, 243, 0.95), rgba(25, 118, 210, 0.95)),
    url(../assets/images/obi-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-container iframe:hover {
  transform: scale(1.02);
}

.content-section .text-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2rem !important;
  transition: transform 0.3s ease;
}

.content-section .text-content:hover {
  transform: translateY(-5px);
}

.content-section h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.action-links {
  margin-top: 2rem;
}

.action-links .btn {
  padding: 12px 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.action-links .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-links .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.action-links .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}


.right-text p {
  color: #fff;
  font-size: 20px;
}

.right-text a {
  color: #ffffff;
  text-decoration: none;
}

/* Professional Footer Styles */
.footer {
  background: linear-gradient(to right, var(--primary-subtle), var(--primary-light));
  padding: 60px 0 30px;
  position: relative;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Sections */
.footer-section {
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-dark);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.8rem;
}

/* Contact Info */
.footer-contact {
  color: #000;
}

.footer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

/* .footer-contact i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
} */

/* Footer Logo Section */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
}

.footer-about {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Media Icons */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-dark);
  /* Deep blue background */
  transition: all 0.3s ease;
}

.footer-social .social-link i {
  color: #FFFFFF;
  /* White icon color */
  font-size: 1.2rem;
}

.footer-social .social-link:hover {
  background: var(--text-primary);
  /* Lighter blue on hover */
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(27, 79, 114, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  color: #000;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}



/* Quick Links Grid */
.footer-quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Newsletter Section */
.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter input {
  background: white;
  border: 1px solid var(--primary-light);
  padding: 8px 15px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 10px;
}

.footer-newsletter button {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--text-primary);
}

/* Certification Logos */
.footer-certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-certifications img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer-certifications img:hover {
  opacity: 1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #007bff;
  color: white;
}

.dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}

#block-strip .title-img {
  max-height: 300px;
  overflow: hidden;
  color: #fff;
  width: 100%;
}

.inner-image img {
  width: 100%;
  border-radius: 5px;
  border: 2px solid #6db9f6;
  padding: 2px;
}

.nav-link {
  color: var(--text-primary) !important;
}

.nav-link:hover {
  color: #222222a6;
}

/* Gradient header background */
.navbar-expand-lg .navbar-collapse {
  justify-content: center;
}

.header {
  background: linear-gradient(270deg, var(--primary-subtle) 0%, white 100%);
}

/* Logo centering */
.logo {
  text-align: center;
}

/* Navbar menu styles */
.navbar {
  background: linear-gradient(to right, var(--primary-subtle), var(--primary-light));
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Main Navigation Links */
.navbar .nav-link {
  color: #000 !important;
  font-weight: 600;
  padding: 8px 15px;
  margin: 0 5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--text-primary) !important;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Dropdown Styles */
.navbar .dropdown {
  position: static;
}

.navbar .dropdown-menu {
  display: none;
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 0;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu:hover {
  display: block;
}

.navbar .dropdown-item {
  color: var(--text-primary);
  padding: 8px 20px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  transform: translateX(5px);
}


/* Language Selector Specific Styles */
.navbar .language-option {
  white-space: nowrap;
}

/* Active State */
.navbar .nav-link.active,
.navbar .dropdown-item.active {
  color: var(--primary-dark);
  background-color: var(--primary-subtle);
}


.obi-lisiting {
  background: linear-gradient(rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.2)),
    url(../assets/images/map-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 0 0 3em;
  margin: -2em auto 3em;
}

.obi-lisiting h2 {
  color: #fff;
  padding-top: 3em;
}

.service-section .col-lg-3 {
  flex: 0 0 auto;
  width: 25%;
  padding: 0;
}

.right-text {
  text-align: center;
  margin: 1em 0 0;
}

.map-right-part img {
  width: 100%;
}

.col-md-6.map-right-part {
  padding: 0;
  margin: 0;
}

.border {
  width: 60%;
  display: block;
  margin: 0 auto 0;
}

.flags-content {
  background-color: var(--primary-subtle);
  padding: 3rem 0;
}

.map {
  padding: 3em 0 0;
  width: 80%;
  display: block;
  margin: 0 auto;
}

.page-header {
  background: linear-gradient(rgb(13 110 253), rgb(0 0 0 / 80%)), url(../assets/images/banner/banner-6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 165px 0 69px;
  margin-bottom: 1rem;
}

.map-container {
  height: 400px;
  position: relative;
}

.contact-details {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.dropdown-btn img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  z-index: 1;
}

.dropdown-content button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.dropdown-content button img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
}

.dropdown-content button:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}

/* Gallery Styles */
.gallery-container {
  padding: 2rem 0 0;
}

.gallery-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Modal Styles */
.inner-image {
  width: 100%;
}

.well {
  box-shadow: #ccc 1px 2px 5px;
  border-radius: 3px;
  color: #333;
  background-color: #fff;
  border: 1px solid #aaa;
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-horizontal .control-label {
  padding-top: 7px;
  margin-bottom: 0;
  text-align: right;
  font-weight: bold;
}

.store-info {
  background: #e5f0ff30;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 18px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.link-item:hover {
  color: #007bff;
}

.link-item i {
  margin-right: 10px;
  font-size: 18px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.emp-logo {
  width: 40%;
}

/* Updated/New Styles */
/* body {
  background-color: var(--primary-subtle);
} */

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgb(255, 255, 255);
  content: var(--bs-breadcrumb-divider, "/");
}

.service-section {
  background-color: white;
  padding: 3rem 0 0;
  margin: 2rem 0 0;
}

.video-part {
  background: linear-gradient(rgb(33 150 243 / 35%), rgb(33 150 243 / 55%)), url(../assets/images/obi-bg.jpg);
  padding: 3rem 0;
  margin: 2rem 0 0;
}

.map-address {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.flags-content {
  background-color: var(--primary-subtle);
  padding: 3rem 0;
}

/* Card improvements */
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}


.recent-obituary .card-title{
  color: #fff;
}


/* Button styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section headers */
h2 {
  color: var(--text-primary);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
} */

/* Footer improvements */
.footer {
  background: linear-gradient(to right, var(--primary-subtle), var(--primary-light));
  padding: 60px 0 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.footer-social .social-link {
  background: var(--primary-dark);
}

.footer-social .social-link:hover {
  background: var(--text-primary);
}

.obituary-card .justify-content-end {
  justify-content: flex-end !important;
  background-color: #0000003d;  
  border-radius: 0;
}

.obituary-card.card {
  border-radius: 5px;
}

.service-section .thumbnail h5 {
  text-align: center;
  margin: 1em 0 0;
}

.obituary-image-container img {
  height: 220px;
}

.edit-btn {
  background-color: #979797 !important;
}

.delete-btn {
  background-color: #b02a37 !important;
}

.flag-link {
  display: block;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.flag-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.flag-img:hover {
  transform: scale(1.05);
}

.flag-overlay {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.flag-name {
  color: #000;
  font-weight: 600;
  margin: 10px 0 0;
  display: block;
}

.modal-dialog-centered .modal-header {
  background-color: #22389a !important;
}

#loginForm .form-control {
  height: 40px;
}

.contact-information {
  margin: 0;
}


[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],
[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #acacac;
}

.con-icon {
  margin-right: 10px;
}

.add-text {
  margin-right: 2em;
  color: #000;
  font-size: 18px;
  text-decoration: none;
}


/*Dashboard right CSS for all section*/

.form-label {
  margin-bottom: .5rem;
  font-size: 14px;
}

.avatar-upload {
  position: relative;
  max-width: 120px;
  margin: 0 auto;
}

.avatar-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  border: 0.3px solid #6d6d6d;
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-group-item i {
  width: 20px;
}

.card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.list-group-item {
  border-left: none;
  border-right: none;
  padding: 12px 20px;
}

.list-group-item.active {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #0d6efd;
}

.tab-content>.tab-pane {
  padding: 0;
}


.list-group-item {
  font-size: 14px;
}

#editProfileBtn {
  font-size: 12px;
  background-color: #f7f7f7;
  box-shadow: none;
  border: none;
  color: #000000;
  padding: 10px;
  font-weight: 500;
  line-height: 0;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  color: #4c4c4c;
}

.list-group-item.active {
  background-color: #878787;
  border-color: #878787;
  color: #fff;
  line-height: 1.5;
}

.tribute-assets {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.asset-item {
  position: relative;
  cursor: pointer;
}

.asset-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-thumbnail {
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.video-thumbnail i {
  font-size: 3rem;
  color: #0d6efd;
}

.audio-player audio {
  width: 100%;
}

#userName {
  font-family: 18px;
}


.dash-heading {
  font-size: 35px;
  font-weight: 600;
}

.dash-block .card-body {
  display: flex;
  justify-content: space-between;
  background: #f9f9f9;
  border-radius: 10px;
}

.dash-right .bi {
  font-size: 40px;
}

.card.dash-block {
  box-shadow: none;
}