/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

 .header {
     text-align: center;
     margin-top: 20px;
 }

 .qr-form {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-top: 20px;
 }

 .form-label {
     margin-bottom: 10px;
 }

 .form-input {
     padding: 10px;
     margin-bottom: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
     width: 80%;
     max-width: 400px;
    resize: vertical;
 }

 .form-button {
     padding: 10px 20px;
     background-color: #007BFF;
     color: #fff;
     border: none;
     border-radius: 4px;
     cursor: pointer;
 }

 .form-button:hover {
     background-color: #0056b3;
 }

 .result {
     display: flex;
     justify-content: center;
     margin-top: 20px;
 }

 .qr-code {
     max-width: 100%;
     height: auto;
    position: relative;
 }

.qr-code img {
    max-width: 20%;
    max-height: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Tabs Container */
.tabs-container {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Tabs */
.tabs {
    display: flex;
    background: #007BFF;
    border-bottom: 1px solid #ddd;
}

.tab-button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    background: #007BFF;
    color: #fff;
    border: none;
    outline: none;
    transition: background 0.3s;
}

.tab-button:hover {
    background: #0056b3;
}

.tab-button.active {
    background: #0056b3;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* Code Block */
pre {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background: #eaeaea;
    padding: 2px 4px;
    border-radius: 4px;
}