body {
    font-family: Poppins;
}

.container{
  background:#ffffff;
}

.inner-container{
    max-width:350px;
    margin-top:70px;
    margin-left:auto;
    margin-right:auto;
    background-color: #ffffff;
}

.header-container{
  max-width:500px;
  margin-left:auto;
  margin-right:auto;

}

.main-content {
    padding-bottom:70px;
}

.header {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header > .banner-photo {
    margin-top: -100px;
    height: 300px;
    overflow: hidden;
}

.header > .profile-photo {
    margin-top: -75px;
    display: flex;
    justify-content: center;
}

.header > .profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 2px solid #ffffff;
}

.header > .name {
    text-align: center;
}

.header > .job-title {
    text-align: center;
}

.header > .company-name {
    text-align: center;
}

.header > .description {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    color: #555555;
    max-width:85%;
    line-height:1.43;
}

.header > .button {
    display:inline-flex;
    align-items:center;
    color:#ffffff;
    box-sizing:border-box;
    cursor:pointer;
    user-select:none;
    letter-spacing:0.02857em;
    min-width:64px;
    background:#1e1f25;
    box-shadow:rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    height:67px;
    font-weight:bold;
    text-transform:capitalize;
    font-size:19px;
    flex-grow:1;
    line-height:1.4;
    padding:7px 16px 6px;
    border-radius:56px;
    width:100%;
    max-width:350px;
    justify-content:center;
    margin-left:20px;
    margin-right:20px;
}

.header > .quick-action {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;    
}

.header > .quick-action > .action > .action-icon{
    box-shadow:rgba(128, 128, 128, 0.35) 0px 4px 5.84px;
    border-radius:20px;
    overflow:hidden;
}

.header > .quick-action > .action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color:#1e1f25;
}

.social {
    margin-top: 70px;
    margin-left:auto;
    margin-right:auto;
    max-width:350px;
}

.social-header {
    font-weight: bolder;
    font-size: 16px;
}

.social-container {
    margin-top:30px;
    display:flex;
    justify-items:stretch;
    justify-content:center;
}

.social-inner{
    box-sizing:border-box;
    display:flex;
    flex-flow:wrap;
    width:100%;
    align-items:stretch;
    justify-content:center;
}

.social-icon {
    flex-basis:33.3333%;
    flex-grow:0;
    max-width:33.3333%;
    margin:0 0 9px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-direction:column;
    color:#1e1f25;
}

.social-icon > .action-icon{
    box-shadow:rgba(128, 128, 128, 0.35) 0px 4px 5.84px;
    border-radius:20px;
    overflow:hidden;
}

.qr-header {
    font-weight: bolder;
    font-size: 20px;
    text-align:center;
}

.qr-container {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.qr-code{
    padding:5px;
    box-shadow:rgba(128, 128, 128, 0.35) 0px 4px 5.84px;
    border-radius:5px;
}

.qr-input {
    margin-top:16px;
    display: flex;
    color:#1e1f25;
    height: 40px; 
    border-radius: 0.375rem; 
    border: 1px solid #d1d5db; 
    background-color: #fefefe; 
    padding: 0.5rem 0.75rem; 
    font-size: 0.875rem; 
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); 
    width: 100%; 
    overflow:hidden;
}

.qr-button-group{
    margin-top:16px;
    display:flex;
    gap:16px;
}

.qr-button{
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    border-radius:0.375rem;
    font-size:0.875rem;
    font-weight:500;
    transition: background-color 0.2s ease, color 0.2s ease;
    outline:none;
    padding: 0.5rem 1rem;
    height:40px;
    flex:1;
    border:1px solid #d1d5db;
    background-color: #fefefe;
    cursor: pointer;
}

.qr-button > svg{
    width:1rem;
    height:1rem;
    margin-right:0.5rem;
}

.hours-header{
    font-weight: bolder;
    font-size: 20px;
    text-align:center;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fefefe;
}

.hours-day {
    font-size: 14px;
    font-weight: bold;
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-time > svg  {
    width:1rem;
    height:1rem;
    margin-right:0.5rem;
}


.tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    max-width:500px;
    margin:0 auto;
  }
  
  .tabbar nav {
    display: flex;
    justify-content: space-around;
  }
  
  .tabbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    color: #6b7280; 
    text-decoration: none;
    border: none;
    background: none;
    font-size: 12px;
  }
  
  .tabbar-item.active {
    color: #1e1f25; 
  }
  
  .tabbar-item .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
  
  .tabbar-item .label {
    font-size: 12px;
  }
  

  .banks{
    margin-top:70px;
  }

  .invoices{
    margin-top:70px;
  }
  
  .container {
    padding: 24px;
  }
  
  .title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
  }
  
  .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
  }
  
  .info-list {
    border-top: 1px solid #e5e7eb;
  }
  
  .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .info-details {
    display: flex;
    flex-direction: column;
  }
  
  .info-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
  }
  
  .info-value {
    font-size: 16px;
    font-weight: 400;
    color: #111827;
  }
  
  .copy-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 50%;
    transition: color 0.2s ease;
  }

  .copy-button > svg{
    width:1.25rem;
    height:1.25rem;
  }
  
  .copy-button:hover {
    color: hsl(240,6%,10%,1); /* Primary color */
  }
  
  .icon {
    width: 20px;
    height: 20px;
  }
  
  .actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
  }
  
  .copy-all-button {
    padding: 10px 16px;
    background-color: hsl(240,6%,10%,1); /* Primary color */
    color: white;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
  }
  
  .copy-all-button:hover {
    background-color: hsl(240,6%,10%,1); /* Primary-dark color */
  }
  
  .copy-all-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px hsl(240,6%,10%,1), 0 0 0 8px rgba(0, 0, 0, 0.1); /* focus:ring-2 focus:ring-primary focus:ring-offset-2 */
  }

  .catalog {

    margin-top:70px;

  }
  
  .catalog-header {
    font-weight: bolder;
    font-size: 20px;
    text-align:center;
  }
  
  .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .catalog-item {
    background-color: hsl(240, 6%, 95%);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s ease;
    color:#1e1f25;
  }
  
  .catalog-item:hover {
    background-color: hsl(240, 6%, 10%, 1);
    color: white;
  }
  
  .catalog-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .catalog-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .catalog-title {
    font-size: 16px;
    font-weight: medium;
  }
  
  .icon-book, .icon-arrow {
    width: 24px;
    height: 24px;
    fill: hsl(240, 6%, 10%);
  }
  
  .icon-arrow{
    transform:rotate(180deg);
  }

  .catalog-item:hover .icon-book, .catalog-item:hover .icon-arrow {
    fill: white;
  }
  
  .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: hsl(240, 6%, 10%, 1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .catalog-item:hover .underline {
    transform: scaleX(1);
  }

  .bank-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Bank Card Styling */
.bank-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.bank-card:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.bank-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.bank-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.bank-account {
    font-size: 1rem;
    color: #555;
}

/* Dialog Styling */
.bank-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.bank-dialog-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: left;
}

.dialog-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dialog-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.dialog-account-name,
.dialog-account-type {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.close-btn {
    margin-top: 20px;
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.close-btn:hover {
    background-color: #d32f2f;
}


.vcard-preview .tabbar{
  position:absolute !important;
}

.vcard-preview .header > .name {
  color:#000000;
}

.vcard-preview .qr-header {
  color:#000000;
}

.vcard-preview .qr-button {
  color:#000000;
}

.vcard-preview .hours-header{
  color:#000000;
}

.vcard-preview .catalog-header{
  color:#000000;
}


.wifi-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.wifi-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.wifi-title {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.wifi-icon {
  margin-right: 10px;
}

.wifi-description {
  color: #666;
  font-size: 0.9em;
  margin-top: 5px;
}

.wifi-card-content {
  margin-bottom: 20px;
}

.wifi-info {
  margin-bottom: 10px;
}

.wifi-label {
  color: #888;
  font-size: 0.85em;
}

.wifi-value {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}

.wifi-qr {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.wifi-card-footer {
  text-align: center;
}

.wifi-footer-text {
  font-size: 0.85em;
  color: #888;
}


.review-card {
  width: 100%;
  margin-bottom:18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ddd;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  color: #555;
}

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

.review-author {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-rating {
  display: flex;
}

.star-rating .star {
  width: 16px;
  height: 16px;
  color: #ffcd3c;
}

.rating-value {
  font-size: 0.9em;
  color: #777;
}

.review-content {
  margin-top: 8px;
}

.review-text {
  font-size: 0.9em;
  margin-bottom: 4px;
}

.review-date {
  font-size: 0.8em;
  color: #aaa;
}
