﻿/* Container and Title */
.tsqr-tool-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    font-family: Arial, sans-serif;
    text-align: center;
}


.tsqr-tool-title {
    color: #333;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}


/* Input Field */
.tsqr-input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}


.tsqr-input-field:focus {
    border-color: #006400;
    outline: none;
}


/* Dark Green Button */
.tsqr-button {
    background-color: #006400; /* Dark Green */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
}


.tsqr-button:hover {
    background-color: #008000; /* Hover Green */
}


/* QR Code Output Area */
.tsqr-output-area {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}


.tsqr-image-container {
    padding: 15px;
    margin: 20px auto;
    display: inline-block;
    border: 1px solid #ddd;
}


.tsqr-image-container img,
.tsqr-image-container canvas {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Download Link Styling */
.tsqr-button-download {
    display: inline-block;
    background-color: #006400;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}


.tsqr-button-download:hover {
    background-color: #008000;
}


.tsqr-message-text {
    color: red;
    margin-top: 10px;
}