<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Part 1 - Colors and Typography */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&amp;display=swap');

/* Header */
.bg-dark {
    background-color: #662113 !important;
}

/*TOP SEARCH BAR*/




/*breadcrumb*/


.breadcrumb-container {
    background-color: #4c1a0d;
    padding: 0.5rem 1rem;
  }
  
  .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
  }
  
  .breadcrumb-item a {
    color: #fff;
  }
  
  .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: #fff;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    content: "&gt;";
    color: #fff;
}

  

/*gps button*/

/*#gps-button {*/
div &gt; form &gt; button{
    /* Add your custom styles for the GPS button */
    margin-left: 10px;
    background-color: #662113;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    width: 7rem;
}

/*----------------------------------------*/
body {
    font-family: 'Amiri', serif;
    background-color: #F6F6F6 !important;
    font-weight: bold !important;
    font-size: 1.2rem;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: bold !important;
}
.h5, h5 {
    font-size: 1.35rem;
}
/*---------------------------------------*/

/* Primary color */
.primary-color {
    color: #662113 !important;
}

/* Secondary color */
.secondary-color {
    color: #9d8c8c !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    color: #662113;
}
/* Part 2 - Elements and Layout */

/* Navbar styles */
.title_nav {
    border-radius: 5px !important;
    background-color: #662113 !important;
    padding: 10px 20px;
}

.navbar-brand {
    font-weight: bold !important;
    font-size: 1.35rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    color: #ffffff !important;
}

/* Content styles */
.page_content {
    padding: 40px 20px !important;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #662113;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.countryFlag {
    width: 90px !important;
    border-radius: 15px !important;
}

.country_item {
    border-radius: 15px !important;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.country_item a {
    text-decoration: none !important;
    color: #333 !important;
}

.country_item:hover {
    opacity: 0.8 !important;
    background-color: #EFEFEF !important;
}

.card-body {
    padding: 10px 20px !important;
}

.cityPageContent {
    padding: 10px !important;
}

.cityPageContent2 {
    background-color: #ffffff !important;
    padding: 10px !important;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.countryName{
    max-width: 110px;
    margin-top: 1.2rem;
}

@media screen and (max-width: 1190px) {
    .countryName {
        font-size: 1rem !important;
    }
}

.cityPageContent2 .btn {
    background-color: #662113 !important;
    color: #fff !important;
}

/* Footer */
footer {
    background-color: #662113 !important;
    padding: 20px;
    color: #fff;
}
</pre></body></html>