/* Globální styly */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    background-color: #f9f9f9;
    color: #333;
}

/* Sidebar */
.sidebar {
    width: 15%;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    border-right: 1px solid #e0e0e0;
}

.logo {
    top: 0;
    padding: 28px;
    text-align: center;
    background-color: #f0f0f0;
    font-weight: bold;
    height: 210px;
    color: #208ea2;
}

.status {
    padding: 0 20px;
    text-align: left;
    background-color: #ffffff;
    height: 100%;
}

.status h3 {
    color: #d3cb79;
}

.status textarea {
    height: calc(100% - 77px);
}

/* Hlavní menu */
.main-menu {
    padding: 0 20px;
    border-top: 1px solid #e0e0e0;
}

.main-menu h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d3cb79;
    margin-bottom: 20px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    margin-bottom: 15px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.main-menu li:last-child{
    margin-bottom: 20px;
}

.main-menu li:hover {
    background-color: #e0f7;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Další sekce */
.sections, .tools {
    padding: 20px;
    text-align: center;
}

.sections h3, .tools h3 {
    font-size: 18px;
    font-weight: bold;
    color: #208ea2;
    margin-bottom: 20px;
}

.sections ul, .tools ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sections li, .tools li {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.sections li:hover, .tools li:hover {
    background-color: #e0f7fa;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hlavní sekce obsahu */
.content {
    margin-left: 15%;
    padding: 20px;
    width: 85%;
    height: calc(100vh - 190px);
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* QR Generator */
.qr-generator {
    display: flex;
    flex-direction: column;
    background-color: #e2e2e2;
    padding: 20px;
    position: fixed;
    width: 85%;
    top: 0;
    left: 15%;
    z-index: 1;
    height: 210px;
    box-sizing: border-box;
}

/* Středovaný nadpis pro QR */
.center-title {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #208ea2;
    margin-bottom: 10px;
}

/* Row pro QR kódy a vstupní pole */
.qr-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Input fields a QR code styly */
.qr-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-group input {
    width: 180px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

/* Tlačítka */
.button-group {
    display: flex;
    gap: 10px;
}

.qrButton {
    cursor: pointer;
    border-radius: 4px;
    border: none;
    background-color: #208ea2;
    color: white;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 70px;
    height: 121px;
    border: 1px solid #ccc;
}

.qrButton:hover {
    background-color: #005f73;
}

.qrButton i {
    font-size: 26px;
}