#cover {
  background: #000;
  color: #ffbc42;
  z-index: 2000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s linear;
}
#cover.hide {
  opacity: 0;
  pointer-events: none;
}


body {
    background-color: #218380;
    font-family: 'Urbanist', sans-serif;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.dark-mode {
  background-color: black;
}
body.dark-mode #searchbar {
  background-color: #222222; 
}
body.dark-mode #searchbutton {
  background-color: #222222; 
}
body.dark-mode #searchFilter {
  background-color: #222222; 
}
body.dark-mode #minyear {
  background-color: #222222;
}
body.dark-mode #maxyear {
  background-color: #222222;
}
body.dark-mode #yearclearbutton {
  background-color: #222222;
}
body.dark-mode th { 
  background: #222222; 
}
body.dark-mode table {
  color: #ffffff;
}
body.dark-mode tr:nth-of-type(even) { 
  background: #222222; 
}

body.dark-mode footer {
  background-color: #222222; 
}
body.dark-mode #darkmodebutton {
  background-color: #222222; 
}
body.dark-mode #darkmodeicon {
  background-color: #222222; 
}

/* Band count display */
.band-count {
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background: rgba(255, 188, 66, 0.1);
  border: 1px solid #ffbc42;
  border-radius: 5px;
  color: #ffbc42;
  font-weight: bold;
  font-size: 16px;
}

.dark-mode .band-count {
  background: rgba(255, 188, 66, 0.05);
  color: #ffbc42;
}

/* Loading improvements */
#cover {
  font-size: 18px;
  font-weight: bold;
}

/* Refresh button styling */
#refreshButton {
  background: #1e7572 !important;
  color: #ffbc42 !important;
  border: 1px solid #ffbc42 !important;
  border-radius: 5px !important;
  margin: 5px !important;
  padding: 8px 12px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

#refreshButton:hover {
  background: #ffbc42 !important;
  color: #1e7572 !important;
}

#refreshButton:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

/* Featured bands highlight */
tr.featured {
  border-left: 4px solid #ffbc42 !important;
}

.dark-mode tr.featured {
  border-left: 4px solid #ffbc42 !important;
  background: rgba(255, 188, 66, 0.05) !important;
}

/* Status styling */
.status-active {
  color: #4CAF50;
  font-weight: bold;
}

.status-inactive {
  color: #FF9800;
  font-weight: bold;
}

.status-disbanded {
  color: #F44336;
  font-weight: bold;
}

.status-unknown {
  color: #9E9E9E;
  font-style: italic;
}

/* Table improvements for mobile */
@media screen and (max-width: 768px) {
  .band-count {
    font-size: 14px;
    margin: 10px 5px;
    padding: 8px;
  }
  
  #refreshButton {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
  
  /* Hide Home link on mobile when on homepage */
  .nav-home-link {
    display: none;
  }
}

/* Band Modal Styles */
.band-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.band-modal-overlay.show {
  opacity: 1;
}

.band-modal {
  background: #218380;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.band-modal-overlay.show .band-modal {
  transform: scale(1);
}

.dark-mode .band-modal {
  background: #333;
  color: #fff;
}

.band-modal-header {
  display: flex;
  justify-content: between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #ffbc42;
}

.band-modal-title {
  color: #ffbc42;
  margin: 0;
  font-size: 24px;
  flex: 1;
}

.band-modal-close {
  background: none;
  border: none;
  color: #ffbc42;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-modal-close:hover {
  color: #d81159;
}

.band-modal-body {
  padding: 20px;
}

.band-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-item label {
  font-weight: bold;
  color: #ffbc42;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item span {
  color: #fff;
  font-size: 16px;
}

.dark-mode .info-item span {
  color: #e0e0e0;
}

.band-modal-links h3 {
  color: #ffbc42;
  margin-bottom: 15px;
  font-size: 18px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.social-link {
  display: block;
  padding: 10px 15px;
  background: rgba(255, 188, 66, 0.1);
  border: 1px solid #ffbc42;
  border-radius: 5px;
  text-decoration: none;
  color: #ffbc42;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffbc42;
  color: #218380;
}

.dark-mode .social-link {
  background: rgba(255, 188, 66, 0.05);
}

.dark-mode .social-link:hover {
  background: #ffbc42;
  color: #333;
}

.band-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 188, 66, 0.3);
}

.action-btn {
  padding: 10px 20px;
  border: 2px solid #ffbc42;
  background: transparent;
  color: #ffbc42;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #ffbc42;
  color: #218380;
}

.dark-mode .action-btn:hover {
  color: #333;
}

/* Loading spinner animation */
.loading-spinner {
  animation: spin 2s linear infinite;
  display: inline-block;
  font-size: 24px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Band Modal Styles */
.band-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.band-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.band-modal {
  background: #218380;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 2px solid #ffbc42;
}

.band-modal-overlay.show .band-modal {
  transform: scale(1);
}

.dark-mode .band-modal {
  background: #1a1a1a;
  color: #ffffff;
}

.band-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #ffbc42;
  background: rgba(255, 188, 66, 0.1);
}

.band-modal-title {
  color: #ffbc42;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.band-modal-close {
  background: transparent;
  border: none;
  color: #ffbc42;
  font-size: 30px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.band-modal-close:hover {
  background: rgba(255, 188, 66, 0.2);
}

.band-modal-body {
  padding: 20px;
}

.band-info-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-item label {
  font-weight: bold;
  color: #ffbc42;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item span {
  font-size: 16px;
}

.band-modal-links {
  margin: 20px 0;
}

.band-modal-links h3 {
  color: #ffbc42;
  margin-bottom: 15px;
  font-size: 18px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 188, 66, 0.1);
  border: 1px solid #ffbc42;
  border-radius: 8px;
  text-decoration: none;
  color: #ffbc42;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.social-link:hover {
  background: #ffbc42;
  color: #218380;
  transform: translateY(-1px);
}

.dark-mode .social-link:hover {
  color: #1a1a1a;
}

.band-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 188, 66, 0.3);
}

.action-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ffbc42;
  background: transparent;
  color: #ffbc42;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.action-btn:hover {
  background: #ffbc42;
  color: #218380;
}

.dark-mode .action-btn:hover {
  color: #1a1a1a;
}

/* Mobile modal styles */
@media screen and (max-width: 768px) {
  .band-modal {
    width: 95%;
    margin: 10px;
    max-height: 90vh;
  }
  
  .band-modal-header {
    padding: 15px;
  }
  
  .band-modal-title {
    font-size: 20px;
  }
  
  .band-modal-body {
    padding: 15px;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .band-modal-actions {
    flex-direction: column;
  }
}

/* Footer styles */
footer {
  font-family: 'Urbanist', sans-serif;
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: #218380;
  height: 2rem; /* Increased back to 2rem */
  padding: 8px 20px 8px 0; /* More padding */
  box-sizing: border-box;
  border-top: 2px solid #ffbc42;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #ffbc42;
  text-decoration: none;
}

footer a:hover {
  color: #d81159;
  text-decoration: underline;
}

.dark-mode footer {
  background: rgba(34, 34, 34, 0.95);
}

/* Submission info styling */
.submission-info {
    margin: 20px 0;
    padding: 8px 15px;
    background: rgba(255, 188, 66, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 188, 66, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submission-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.submission-info a {
    color: #1e7572; /* Changed from #d81159 to turquoise */
    background: #ffbc42; /* Added yellow background */
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 8px;
    transition: all 0.3s ease;
    border: 2px solid #1e7572;
    font-size: 14px;
}

.submission-info a:hover {
    background: #1e7572; /* Swap to turquoise background */
    color: #ffbc42; /* Swap to yellow text */
    border-color: #ffbc42;
    text-decoration: none; /* Remove underline on hover */
}

.nav {   
    overflow: hidden; }
    
  .nav a {
    float: left;
    margin: 10px;
    display: block; 
    color: #ffbc42;
    text-shadow: #000000 1px 1px;
    font-size: 18px;
}
.nav a:hover {
    color: #d81159;
}
  .nav #menu-toggle {
    display: none; }
  @media screen and (max-width: 768px) {
    .nav {   
      overflow: visible; }
    .nav a:not(:first-child) {
      display: none; }
    .nav a#menu-toggle {
      float: right;
      display: block; } }
  @media screen and (max-width: 768px) {
    .nav.nav--open {
      position: relative; }
    .nav.nav--open #menu-toggle {
      /* Hamburger stays fixed - no position change */
    }
      .nav.nav.nav--open #searchbar {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }
      .nav.nav.nav--open #searchbutton {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }
      .nav.nav.nav--open #searchFilter {
        position: absolute;
        top: -9999px;
        left: -9999px;
      }
    .nav.nav--open a {
      float: none;
      display: block;
      text-align: left; } }
  .menu-toggle__bar1, .menu-toggle__bar2, .menu-toggle__bar3 {
    width: 21px;
    height: 3px;
    background-color: #ffbc42;
    margin: 4px 0;
    transition: 0.3s; }
  
  /* PHASE 1 FIX: Keep hamburger in fixed position */
  @media screen and (max-width: 768px) {
    #menu-toggle {
      position: fixed !important;
      top: 10px !important;
      right: 10px !important;
      z-index: 1000 !important;
    }
  }

  /* Portrait mobile: drop searchFilter below search box to avoid hamburger overlap */
  @media screen and (max-width: 768px) and (orientation: portrait) {
    #searchFilter {
      display: block;
      width: auto;
      margin-top: 6px;
      top: 10px;
    }
  }
  
  .menu-toggle--open .menu-toggle__bar1 {
    transform: translate(0, 7px) rotate(-45deg); 
    background-color: #d81159;
}
  .menu-toggle--open .menu-toggle__bar2 {
    opacity: 0; }
  .menu-toggle--open .menu-toggle__bar3 {
    transform: translate(0, -7px) rotate(45deg); 
    background-color: #d81159;
}
  
    

#searchbar {
    position: relative;
    top: 10px;
    left: auto;
    background-color: #1e7572;
    border-color: #ffbc42;
    border-radius: 5px 5px 5px 5px;
    color: #ffbc42;
}
#searchbar:focus {
    outline : none;
    border-color: #d81159;
}
#searchbutton {
    position: relative;
    left: auto;
    top: 10px;
    color: #ffbc42;
    background-color: #1e7572;
    border-color: #ffbc42;
}
#searchbutton:hover {
    color: #d81159;
    border-color: #d81159;
    
}

#searchFilter {
  position: relative;
  top: 10px;
  left: auto;
  color: #ffbc42;
  background-color: #1e7572;
  border-color: #ffbc42;
  border-radius: 5px 5px 5px 5px;
}

option:hover {
  color: #d81159;
}
#status_boxes {
  position: relative;
  color: #ffbc42;
}
#socials_boxes {
  position: relative;
  color: #ffbc42;
}
#yearinput {
  color: #ffbc42;
  display: none;
}
#minyear, #maxyear {
  background-color: #1e7572;
  width: 40px;
  color: #ffbc42;
}
#yearclearbutton {
  background-color: #1e7572;
  width: auto;
  color: #ffbc42;
  border-radius: 5px;
  border-color: #ffbc42;
}

h1.headline {
    color: #ffbc42;
    text-align: center;
    text-shadow: #000000 1px 1px;
    font-size: 30px;
}

/* Band count display */
.band-count {
    color: #ffbc42;
    text-align: center;
    font-size: 16px;
    margin: 10px 0;
    font-style: italic;
}

/* Featured bands styling */
tr.featured {
    background: linear-gradient(45deg, rgba(255, 188, 66, 0.1), rgba(216, 17, 89, 0.1));
    border-left: 3px solid #ffbc42;
}

/* Status-based styling */
.status-active {
    color: #4CAF50;
    font-weight: bold;
}

.status-inactive {
    color: #FF9800;
}

.status-disbanded {
    color: #F44336;
}

.status-unknown {
    color: #9E9E9E;
}

/* Loading and error states */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #ffbc42;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Submission info styling - dark mode */
.submission-info {
    margin: 20px 0;
    padding: 8px 15px;
    background: rgba(255, 188, 66, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 188, 66, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submission-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.submission-info a {
    color: #1e7572; /* Changed from #d81159 to turquoise */
    background: #ffbc42; /* Added yellow background */
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 8px;
    transition: all 0.3s ease;
    border: 2px solid #1e7572;
    font-size: 14px;
}

.submission-info a:hover {
    background: #1e7572; /* Swap to turquoise background */
    color: #ffbc42; /* Swap to yellow text */
    border-color: #ffbc42;
    text-decoration: none; /* Remove underline on hover */
}
h2{
  color: #ffbc42;
  text-align: center;
    text-shadow: #000000 1px 1px;
    font-size: 20px;
}
p {
    color:#ffbc42;
    text-align: center;
    text-shadow: #000000 1px 1px;
    font-size: 18px;
}

/* FIX THIS */
.textcontent {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
p.textcontent {
  color: #000;
}


img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.table {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

table th {
    font-weight: bolder;
    background: #1e7572;
    color: #ffbc42;
    text-shadow: #000000 1px 1px;
}
/* Mobile-first approach - by default, not sticky */
.table-header {
  position: relative;
  z-index: 1; 
}

/* Sticky styling for larger screens */
@media (min-width: 768px) {  
  .sticky {
    position: fixed;
    top: 0;
    /*width: 100%;*/ 
    z-index: 100; 
  }
  .table-header.sticky {
    width: 100%; /* This allows the header to be only as wide as its content */
}
}
.table-container {
  overflow: auto;
  overflow-x: auto;
}

#bandTable {
  width: 100%;
  
}

/* Zebra striping */
tr:nth-of-type(even) { 
    background: #1e7572; 
  }

  td, th { 
    padding: 6px; 
    border: 1px solid #3b3b3b; 
    text-align: left; 
  }
  th {
    box-sizing: border-box; /* This ensures padding and border are included in width */
}
/* Apply bold styling specifically to the first column headers and cells */
th:nth-of-type(1), td:nth-of-type(1) {
  font-weight: bold;
}

  @media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
  
	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #3b3b3b; }

    td:not(.wrap) { 
        display: none; 
    }

    tr.active td { 
        display: block; 
    }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #3b3b3b; 
		position: relative;
		padding-left: 50%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
    font-weight: bold; /* Make the labels bold */
    color: #ffbc42; /* Change color here */
    text-shadow: #000000 1px 1px;
	}
	
/* Bold for the first column data */
  td:nth-of-type(1) {
  font-weight: bold;  /* Makes text in the first column bold */
}

	/*
	Label the data
	*/
	td:nth-of-type(1):before { content: "Name"; }
	td:nth-of-type(2):before { content: "Genre"; }
	td:nth-of-type(3):before { content: "Status"; }
	td:nth-of-type(4):before { content: "Year Est."; }
	td:nth-of-type(5):before { content: "Instagram"; }
	td:nth-of-type(6):before { content: "Linktree/Etc."; }
	td:nth-of-type(7):before { content: "Website"; }
	td:nth-of-type(8):before { content: "Facebook"; }
	td:nth-of-type(9):before { content: "Spotify"; }
	td:nth-of-type(10):before { content: "Youtube"; }
    td:nth-of-type(11):before { content: "Bandcamp"; }
	td:nth-of-type(12):before { content: "Soundcloud"; }



}
.calendar, .agenda {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .calendar {
      display: none;
  }
  .agenda {
    display: flex;
 
    left: 10%;
    right: auto;
    

  }
}

@media only screen and (min-width: 769px) {
  .calendar {
      display: flex;
     
      left: 5%;
     
  }
  .agenda {
      display: none;
  }
}


.wrap {
  width: 48%; /* or any width that works well for your layout */
  word-wrap: break-word;
}




footer {
  font-family: 'Urbanist', sans-serif;
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-color: #218380;
  height: 2rem; /* Increased back to 2rem */
  padding: 8px 20px 8px 0; /* More padding */
  box-sizing: border-box;
  border-top: 2px solid #ffbc42;
}

#footerlink {
  position: relative;
  bottom: 8px; /* Adjusted for new height */
  font-size: 14px;
  padding-right: 50px;
}

#darkmodeicon {
  position: absolute;
  right: 12px;
  color: #ffbc42;
  background-color: #218380;
  border: none;
  font-size: 16px;
  z-index: 10;
}

/* Quick stats display */
.quick-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 188, 66, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 188, 66, 0.3);
}

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

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ffbc42;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.dark-mode .quick-stats {
  background: rgba(255, 188, 66, 0.05);
  border-color: rgba(255, 188, 66, 0.2);
}

/* Export button styling */
#exportButton {
  background: #1e7572 !important;
  color: #ffbc42 !important;
  border: 1px solid #ffbc42 !important;
  border-radius: 5px !important;
  margin: 5px !important;
  padding: 8px 12px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

#exportButton:hover {
  background: #ffbc42 !important;
  color: #1e7572 !important;
}

/* Enhanced mobile quick stats */
@media screen and (max-width: 768px) {
  .quick-stats {
    gap: 15px;
    margin: 15px 5px;
    padding: 12px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  #exportButton {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
}