/* style.css */

@font-face {
    font-family: Aquire;
    src: url('aquire_font.otf');
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    background: #f4f4f9;
    padding-bottom: 60px;
}

.content{
    margin: 15px;
}

h1{
    color: #007bff;
}


.default-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.b-primary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 1.0rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-primary:hover {
    background: #055ebd;
}

.b-primary:active {
    background: #004f9b;
    transform: scale(0.96);
}

.b-secondary {
    background: #888888;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 1.0rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-secondary:hover {
    background: #767676;
}

.b-secondary:active {
    background: #535353;
    transform: scale(0.96);
}

.img-upload {
    background: #d9f9f7;
    color: #000000;
    border: none;
    padding: 12px;
    font-size: 1.0rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.small-text{
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
    text-align: center;
}


/* Mobile-style container */
.mobile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
  }
  
  /* Bottom Navigation */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }
  
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 8px;
  }
  
  .nav-item.active {
    color: #007bff;
  }
  
  .nav-item i {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
  
  /* Mobile Card Styles */
  .mobile-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }


/* Navigation go back */
.nav-go-back {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #007bff;
}


/* if width is mobile */
@media (max-width: 600px) {
    .bottom-nav {
        padding-bottom: 15px;
    }
}