body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
.logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
}
.logo img {
    max-width: 100%;
}
.container {
    width: 90%;
    max-width: 600px;
}
textarea {
    height: 200px;
}
.btn-large {
    width: 100%;
}
footer {
    position: absolute;
    bottom: 10px;
}
textarea.materialize-textarea {
    height: 300px !important;
    font-size: 18px;
}
#generatedLink {
    text-align: center;
}
/* Container for buttons */
.button-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
/* Styling for the social share buttons */
.social-share {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center; /* Center the buttons horizontally */
}
.social-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.2s;
}
.social-button:hover {
    opacity: 0.85;
    transform: scale(1.05);
}
.social-button.facebook { background-color: #3b5998; }
.social-button.twitter { background-color: #1da1f2; }
.social-button.linkedin { background-color: #0077b5; }
.social-button.email { background-color: #323232; }