/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    /* background: rgb(242, 242, 242); */
    background: rgb(8,11,20);
    background: linear-gradient(156deg, rgba(8,11,20,1) 0%, rgba(21,21,89,1) 29%, rgba(8,11,20,1) 100%);
    /* background: linear-gradient(132deg, rgba(0, 99, 123, 1) 0%, rgba(114, 57, 198, 1) 45%, rgba(0, 255, 206, 1) 100%); */
    /* margin: 0; */
    /* padding: 0; */
    display: flex;
    justify-content: center; 
    align-items: center;
    /* height: 100vh;
    color: #333;
}

h1,
h2 {
    /* text-align: center; */
    color: #444;
}

h1 {
    font-size: 36px;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

/* p {
    font-size: 1rem;
    margin: 0.5rem 0;
} */

/* Container
body > div {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
} */

/* Button Styles */
#botimage{
    width: 400px;
    /* height: 115px; */
    padding-right: 10px;
    /* padding-bottom: 15px; */
}

#status,#balance,#network{
    font-family: monospace;
    margin:0px;
    font-size: 14px;
    background-color: rgb(255, 253, 195);
    padding-left:10px;
    padding-bottom:2px;
}




.containerMain {
    margin-top: 5px;
    justify-content: center;
    align-items: center;
    /* width: 50%; */
    background-color: white;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 10px;
    padding: 20px;
    /* padding-right: 20px; */
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    /* box-shadow: #ccc; */
}
#executeBox{
    display: flex;

}
#titleBoxTop{
    /* display: flex; */
    /* border-bottom: 1px solid rgb(234, 234, 234); */
    /* background-color: black; */
    padding-bottom: 20px;
    text-align: center;
    /* margin-bottom: 20px; */

}
@media (max-width: 600px) {
    #titleBox{
        display: block;
        text-align: center;
    }
    #botimage{
        width: 50%;
        /* height: 115px; */
        padding-right: 10px;
        /* padding-bottom: 15px; */
    }
    table, .containerMain1{
        font-size: 12px;
    }
}
button:disabled{
    background-color: #ccc;
    /* cursor: not-allowed; */
}

button {
    display: block;
    /* width: 100%; */
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}
#claimButton{
    /* background-color: #d7d7d7; */
    margin-top: 0px;
    cursor: default;
    background-color: #cacaca;
}

#sendButton{
    
    background-color: #e3004f;
    margin-top: 0px;
}
#sendButton:hover{
    background-color: #8e0032;
}
button:hover {
    background-color: #0056b3;
}


/* Input Styles */
input[type="number"] {
    /* width: calc(100% - 1.5rem); */
    padding: 10px;
    /* margin-top: 1rem; */
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 20px;
    font-size: 16px;
    margin-right: 10px;
}

/* Error and Status Messages */
#errorMessage {
    color: red;
    margin-top: 1rem;
}

/* #transactionStatus {
    color: green;
    margin-top: 1rem;
} */

table {
    width:100%;
    background-color: #ffffff1c;
    border: 1px solid white;
    /* box-shadow: 0 4px 8px rgb(255, 0, 0); */
    border-collapse: collapse;
    color: white;
  }

  th, td {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  th {
    background-color: #ffffff7e;
    color: white;
  }

  .success {
    color: rgb(0, 255, 0);
    font-size: 1.5em;
    text-align: center;
  }

  .fail {
    color: red;
    font-size: 1.5em;
    text-align: center;
  }