/* styles.css */
#average-excel {
    width: 100%;
    text-align: center;
    font-size: 17px;
}

#shareTable, #resultTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

#shareTable th, #shareTable td, #resultTable th, #resultTable td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
#shareTable td input{
    width: 60%;
    font-size: 17px;
}

button {
    height: 40px;
    display: inline-block;
    margin: 10px 4px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border-color: green;
    background-color: green;
    color: #fff;
}
#addRowBtn {
    height: 40px;
    margin: 5px 0px 20px 0px;
}
#clearBtn, #resetBtn  {
    color: rgb(255, 118, 27);
}
button:hover {
    background-color: rgb(31, 53, 42);
}

#downloadBtn:disabled {
    background-color: #ccc; /* Grey background */
    color: #666; /* Dark grey text */
    cursor: not-allowed; /* Change cursor to not-allowed */
    
  }

@media screen and (max-width: 680px) {
    #shareTable td input{
        width: 100%;
    } 
}
@media screen and (max-width: 408px) {
    #shareTable, #resultTable {
        word-break: break-word;
        
    }
}
  
