/* styles.css 
    #sendbsv {
        display: none;
    }
    #receivebsv {
        display: none;
    }
    #purseAddr {
        display: none;
    }  
        */
        
    #ownerAddr {
        display: none;
    }
    #tokenAddr {
        display: none;
    }    
    #trust {
        display: none;
    }   
    #api {
        display: none;
    }   
    #satsLimit {
        display: none;
    } 


body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin: 0;
    padding: 2rem;
    background-color: #ff9900;
    border-radius: 1rem;
    box-shadow: 0 0 1rem #ff9900;
    text-shadow: 0 0 1rem #000;
}

p {
    font-size: 2rem;
    margin: 2rem 0;
}

button {
    font-size: 4rem;
    margin: 0;
    padding: 2rem;
    background-color: #ff9900;
    border-radius: 1rem;
    box-shadow: 0 0 1rem #ff9900;
    text-shadow: 0 0 1rem #000;
    color: #fff;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.smButton {
    font-size: 2rem;
    margin: 0;
    padding: 2rem;
    background-color: #ff9900;
    border-radius: 1rem;
    box-shadow: 0 0 1rem #ff9900;
    text-shadow: 0 0 1rem #000;
    color: #fff;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.vsmButton {
    font-size: 1rem;
    margin: 0;
    padding: 0rem;
    background-color: #ff9900;
    border-radius: 2rem;
    box-shadow: 0 0 1rem #ff9900;
    text-shadow: 0 0 1rem #000;
    color: #fff;
    font-family: Arial, sans-serif;
    cursor: pointer;
}


button:hover {
    background-color: #fff;
    box-shadow: 0 0 1rem #fff;
    color: #ff9900;
}

a {
    color: #ff9900;
    text-decoration: none;
    border-bottom: 2px solid #ff9900;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #fff;
    background-color: #ff9900;
    border-bottom-color: #fff;
}


.x {
    color: ;
    text-decoration: none;
    border-bottom: ;
    transition: ;
}

.x:hover {
    color: ;
    background-color: ;
    border-bottom-color: ;
}
        
.center {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.page {
    width: 350px;
}

.purseCon {
    text-align: center;
    position: relative;
    font-family: 'Permanent Marker', cursive;
    font-size: 32px;
}
.back {
    position: relative;
    cursor: pointer;
}
.jigs {
    width: 100%;
    top: 15px;
    height: 391px;
}
.send {
    text-align: center;
}

.titleCon {
    position: relative;
}
.label {
    text-align: center;
    font-family: Roboto Slab;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
}
.curBal {
    font-size: 14px;
}

.emoji {
    position: relative;
    height: 26px;
    width: 26px;
}
.contractName {
    position: relative;
    width: 146px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}
.amtlabel {
   font-size: 1rem;
}
.sendAmt {
    text-align: center;
    width: 253px;
    height: 50px;

    background: #E5E5E5;
    font-family: Roboto Slab;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 47px;
    color: #000000;
    text-align: center;
}
.addrlabel {
   font-size: 1rem;
}
.addrInput {
    width: 300px;
    height: 33px;
    background: #E5E5E5;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    align-items: center;
    color: #000000;
}
.send {
    text-align: center;
}
.check {
    display: none;
    position: relative;
}
.purselogo {
    width: 74px;
    height: 32px;
}
.positive {
    color: green;
    font-weight: bold;
}
.negative {
    color: red;
    font-weight: bold;
}
.address-container {
    margin-bottom: 0.5em;
    cursor: pointer;
}
#result {
    display: flex;
    justify-content: center;
}
.underline {
    text-decoration: underline;
  }
#ticker {
    width: 50px; /* Adjust the width as per your preference */
}
#tickerAmount {
    width: 50px; /* Adjust the width as per your preference */
}


/* bitMessage */

  .chat-container {
    max-width: 600px;
    min-width: 100px;
    margin: 20px auto;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;

  }
  
  .chat-header {
    background-color: #f7931a;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 20px;
  }
   
  .message {
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
  }

.message.sender {
  background-color: #f7931a;
  color: #ffffff;
  border-radius: 10px;
  margin-left: auto;
  text-align: right;
  max-width: 200px;
  min-width: 100px; /* Example minimum width */
  width: auto; /* Ensures content-based width */

}
 
   .message.receiver {
    background-color: #ffffff;
    color: #000000;
  border-radius: 10px;

  text-align: left;
  max-width: 200px;
  min-width: 100px; /* Example minimum width */
  width: auto; /* Ensures content-based width */

  }
 
  .message-input {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px 10px 10px 10px;
     solid #e0e0e0;
  }
  
  .message-input input {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 16px;
  }
  
  .message-input button {
    background-color: #ff9900;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
  }
   
     /* Style for the specific link */
  .custom-link {
    color: white; /* Set text color to white */
    text-decoration: none; /* Remove underline by default */
  }

  /* Remove underline on hover */
  .custom-link:hover {
    text-decoration: none;
  }
  
  #addressInput {
  width: 100%; /* Make the text input width 100% of its container (the table cell) */
  box-sizing: border-box; /* Include padding and border in the element's total width */
} 
  
  .highlighted {
    background-color: #ff9900; /* Change this to the desired highlight color */
}
