.qr-code-generator {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#qr-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center; /* Centers text inside input */
	border-radius: 10px;
	border-color: #003A40 !important;
}

#generate-qr {
    padding: 17px 20px;
    background: #ef6079 !important;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    margin-top: 10px;
}

#generate-qr:hover {
    background: #ef6079 !important;
}

#qr-wrapper {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code-container {
    display: none;
    text-align: center;
    margin-top: 0px;
    border: 2px solid #00C19F;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
}

#qr-result {
    display: none;
    text-align: center;
	margin-top:20px;
}

#download-qr {
    margin-top: 20px;
    padding: 17px 20px;
    background: #ef6079 !important;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px; 
    font-weight: bold;
    text-transform: uppercase;
    display: none;
}

#download-qr:hover {
    background: #ef6079 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #qr-input {
        width: 80%;
    }
    #download-qr {
        width: 80%;
    }
}