body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f3f4f6;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    text-align: center;
}



h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.whatsapp-logo {
    width: 80px;
    height: 80px;
	margin-bottom: 10px;
}

.input-row, .button-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

label {
    font-size: 16px;
    color: #333;
    text-align: left;
    margin-bottom: 5px;
}

input {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#countryCode {
    max-width: 70px;
}

button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    flex: 1;
}

.copy-btn {
    background-color: #FF9800;
}

.send-btn {
    background-color: #4CAF50;
}

.donation-section {
    margin-top: 20px;
    text-align: center;
}

.donate-btn {
    background-color: #FF5722;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .container {
        max-width: 380px;
    }
}
.header-container {
    text-align: center;
    border-bottom: 2px solid #ccc; /* Add underline */
    padding-bottom: 10px; /* Space between title and underline */
    margin-bottom: 20px; /* Space between the underline and next section */
}


h1 {
    margin: 0;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
	margin-bottom: 10px;
}

.share-buttons {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	margin-top: 5px;
}

.share-btn img {
    width: 40px;  /* Fixed size for the icons */
    height: 40px; /* Ensure the icons maintain the aspect ratio */
    transition: 0.3s;
	
	margin: 5px;
}

.share-btn img:hover {
    opacity: 0.5; /* Add hover effect */
}

