body {
    font-family: 'Arial', sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#dropZone {
    width: 200px;
    height: 100px;
    border: 2px dashed #3498db;
    text-align: center;
    line-height: 100px;
    margin: 20px;
    color: #3498db;
    font-weight: bold;
    cursor: pointer;
}

#inputContainer {
    text-align: center;
    margin-bottom: 20px;
}

#inputField {
    padding: 15px; /* Increased input size */
    font-size: 18px; /* Increased font size */
    width: 250px; /* Increased width */
    box-sizing: border-box;
}

#result {
    font-size: 18px;
    color: #00000F;
    font-weight: bold;
}

#result.thala {
    color: #0eff73;
}

#shareLinks a {
    display: inline;
    margin: 0 10px;
    padding: 10px;
    text-decoration: none;
    color: #000000;
    background-color: rgb(255, 215, 55);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

#shareLinks a:hover {
    background-color: #ccc;
    color: black;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    
}
