.card {
    height: 100%;
}

ol > li::marker {
    font-weight: bold;
}

.console, .inter-console {
    background-color: #222;
    color: #00ff00;
    font-family: monospace, 'Courier New', Courier;
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.console code {
    background-color: #222;
    color: #00ff00;
    word-wrap: break-word;
    white-space: pre-wrap;
    display: block;
}

.inter-console {
    height: 140px;
    overflow-y: auto;
    padding: 15px;
    margin: 20px 0;
}

.inter-console .console-output {
    white-space: pre-wrap;
}

.inter-console .input-line {
    display: flex;
    align-items: center;
}

.inter-console .prompt {
    color: #00ff00;
    margin-right: 5px;
}

.inter-console input {
    background: none;
    border: none;
    color: #00ff00;
    font-size: 1rem;
    width: 100%;
    font-family: monospace, 'Courier New', Courier;
    outline: none;
}

.inter-console input::placeholder {
    color: #00aa00;
    opacity: 0.7;
}

#ssh-list {
    margin-top: 0;
    margin-left: 0.5rem;
}

#ssh-list li {
    margin-bottom: 1rem;
}

.connection-data {
    height: 140px;
    background-color: #333;
    color: #00ff00;
    font-family: monospace, 'Courier New', Courier;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    margin: 20px 0;
}

.content .connection-data p {
    margin-bottom: 0;
}

.connection-data strong {
    color: #ffcc00;
}

#config-files {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    #config-files {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #config-files {
        grid-template-columns: 1fr;
    }
}

.file-window {
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: monospace;
}

.window-header {
    background-color: #444;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    position: relative;
}

.window-header .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.window-header .red {
    background-color: #ff5f56;
}

.window-header .yellow {
    background-color: #ffbd2e;
}

.window-header .green {
    background-color: #27c93f;
}

.window-header .file-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #ddd;
    font-weight: bold;
}

pre {
    background-color: #1e1e1e;
    margin: 0;
    padding: 1rem;
    color: #f1f1f1;
    overflow-x: auto;
    border-radius: 0 0 12px 12px;
}

.json {
    color: #c3e88d;
}

.yaml {
    color: #82aaff;
}

.ini {
    color: #f78c6c;
}

#json-card, #yaml-card, #ini-card {
    border-top: 5px solid transparent;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#json-card {
    border-top-color: #c3e88d;
}

#yaml-card {
    border-top-color: #82aaff;
}

#ini-card {
    border-top-color: #f78c6c;
}

#json-card:hover, #yaml-card:hover, #ini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cat-eating-candies-image {
    width: 300px;
    height: 150px;
}

.log-card .card-content {
    padding: 0;
}

.terminal-box {
    color: #00ff00;
    background-color: #000000;
    font-family: "Courier New", Courier, monospace;
    height: 200px;
    overflow-y: auto;
    padding: .75rem 1rem;
}
