.fab-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      z-index: 1000;
    }

    .fab-options {
      display: none;
      flex-direction: column;
      gap: 10px;
    }

    .fab-btn {
      background-color: #078268;
      color: white;
      border: none;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
      position: relative;
    }

    .fab-btn:hover {
      transform: scale(1.1);
    }

    .whatsapp { background-color: #25D366; }
    .email { background-color: #000000; }

    /* Glow + pulse */
    @keyframes pulse-glow {
      0% { transform: scale(1); box-shadow: 0 0 5px rgba(7, 130, 104, 0.6); }
      50% { transform: scale(1.1); box-shadow: 0 0 5px rgba(7, 130, 104, 0.9); }
      100% { transform: scale(1); box-shadow: 0 0 5px rgba(7, 130, 104, 0.6); }
    }
    .pulse {
      animation: pulse-glow 2s infinite;
    }

    /* Label (always visible) */
    .label {
      background-color: #000;
      color: #fff;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 14px;
      white-space: nowrap;
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      font-weight: 500;
      transition: opacity 0.5s ease-in-out;
    }
.form{
    border: 2px dashed #078268;
  position: relative;
  top: 50%;
  margin-top:50px;
  width: 100%;
  height: 200px;
  
}
.form p{
  width: 100%;
  text-align: center;
  line-height: 50px;
  font-family: Arial;
}
.form input{
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  margin-left:-50%;
  background:red;
}
.selection{
    margin:5px;
    cursor:pointer;
}
.selection i{
    color:#078268;
    padding-bottom:5px;
}
#result{
    width:100%;
}
.thumbnail{
    float:left;
    width: 100px;
    margin: 10px;    
}
.dt-button{
    border:none;
    padding: 6px 10px;
    background-color:#e0e0e0;
}
.form-control:focus {
  border-color: #078268; /* your primary brand color */
  box-shadow: 0 0 0 0.2rem rgba(7, 130, 104, 0.25); /* subtle shadow in your color */
}
.btn-primary{
  background-color: #078268;
  border-color: #078268;
}
.btn-primary.disabled, .btn-primary:disabled{
  background-color: #078268;
  border-color: #078268;
}
.btn-primary:hover{
  background-color: #045847;
  border-color: #045847;
}
.btn-primary:active{
  background-color: #056954;
    border-color: #078268;
}
.btn-primary .active{
    background-color: #056954;
    border-color: #078268;
}
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus {
  box-shadow: 0 0 0 0.2rem rgba(7, 130, 104, 0.5) !important;
  background-color: #056954 !important;
  border-color: #078268 !important;
}
.border-left-primary {
    border-left: .25rem solid #078268!important;
}
.bg-primary { background-color: #078268 !important; }
.text-primary { color: #078268 !important; }
.border-primary { border-color: #078268 !important; }
/* Secondary Buttons */
.btn-secondary {
  background-color: #71E1CC;
  border-color: #71E1CC;
}
.btn-secondary:hover {
  background-color: #4ac6ae; /* slightly darker */
  border-color: #4ac6ae;
}
.btn-secondary:active {
  background-color: #3fb09a; /* deeper shade */
  border-color: #71E1CC;
}
.btn-secondary .active {
  background-color: #3fb09a;
  border-color: #71E1CC;
}
/* Secondary Utilities */
.border-left-secondary {
  border-left: .25rem solid #71E1CC !important;
}
.bg-secondary { background-color: #71E1CC !important; }
.text-secondary { color: #71E1CC !important; }
.border-secondary { border-color: #71E1CC !important; }
.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus {
  box-shadow: 0 0 0 0.2rem rgba(113, 225, 204, 0.5) !important;
  background-color: #3fb09a !important;
  border-color: #71E1CC !important;
}
.btn-success {
  background-color: #3fb09a;
  border-color: #3fb09a;
}
.btn-success:hover {
  background-color: #056a54; /* darker shade */
  border-color: #056a54;
}
.btn-shadow:hover {
  color:white;
  box-shadow: 0 0 8px rgba(7,130,104,0.5);
}
.btn-link{
    color: #078268;
}
.btn-link:hover {
  color: #078268;
}
.btn-link:active {
  color: #078268;
}
.btn-link:focus,
.btn-link:active:focus,
.btn-link.active:focus {
  color: #078268;
}
input[type=checkbox], input[type=radio]{
    accent-color: #078268;
}