.qr-form-container {
    max-width: 450px;
    margin: 0px auto;
    padding: 25px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #fff;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); */
}

.qr-form-container form {
    display: flex;
    flex-direction: column;
}

/* .qr-form-container label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
} */

.qr-form-container input {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #67c3cf14;
}

.qr-form-container button {
    display: inline-block;
    padding: 13px 38px!important;
    background: #d1f0ef;
    color: #41ceb1;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    transition: background 0.3s ease-in-out;
    font-weight: 700;
    font-size: 16px!important;
    line-height: 22px!important;
}

.qr-form-container button:hover {
   background: #41ceb1;
	color: white;
}

button#ezqr-download-btn 
{
    width: 100%;
}
/* Success & Error Message Styling */
.qr-message {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.qr-message.qr-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.qr-message.qr-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* QR Code Display */
#qrResult {
    margin-top: 15px;
    text-align: center;
}

#qrResult img {
    max-width: 100%;
    height: auto;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    padding: 5px;
    background-color: #fff;
}
/* TOOLS PAGE CSS - START*/
.toolsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.toolBox {
    flex: 1 1 calc(50% - 10px);
    padding: 20px;
    border: 1px solid #dee2e6;
    text-align: center;
    border-radius: 5px;
}

.toolButton {
    display: inline-block;
    padding: 13px 38px;
    background: #d1f0ef;
    color: #41ceb1;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s ease-in-out;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.toolButton:hover {
    background: #41ceb1;
	color: #fff!important;
}