.pop-outer {
    display: none;
    background-color: rgba(0, 0, 0, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pop-inner {
    width: 1200px;
    max-width: 96%;
    max-height: 90vh;
    margin: 2vh auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.close {
    text-align: right;
    background-color: #cc0000;
    padding: 8px 12px;
}

.close a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.pop-content {
    display: flex;
    height: calc(90vh - 42px);
}

.pop-opis {
    width: 30%;
    background-color: grey;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #d0d0d0;
    overflow-y: auto;
}

.pop-opis h3 {
    margin-top: 0;
}

.pop-code {
    width: 70%;
    background-color: #1e1e1e;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.code-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.copy-code {
    background-color: #2d89ef;
    color: white;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
}

.copy-code:hover {
    background-color: #1b6fc9;
}

.code-scroll {
    display: flex;
    flex: 1;
    min-height: 0;
    border: 1px solid #444;
    background-color: #111111;
    overflow-x: scroll;
    overflow-y: scroll;
}

.code-lines {
    background-color: #181818;
    color: #888888;
    padding: 12px 10px;
    text-align: right;
    user-select: none;
    border-right: 1px solid #333;
    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.5;
    flex-shrink: 0;
}

.code-lines span {
    display: block;
}

#codeBlock {
    margin: 0;
    padding: 12px;
    white-space: pre;
    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #00ff99;
    min-width: max-content;
    box-sizing: border-box;
}

.comment {
    color: #888888;
}
.comment_2 {
    color: 	#663333;
}

.copy-info {
    margin-top: 8px;
    font-size: 13px;
    color: #cccccc;
    flex-shrink: 0;
}