/* content.css - Stijlen voor de content gebieden */

/* Welkom pagina */
.info {
    font-family: 'Inconsolata', monospace;
    font-size: 0.75em;
    color: #e0e0e0;
    background-color: #2a2a2a;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    max-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 1s ease, max-height 1s ease, opacity 1s ease;
    min-width: 185px;
}

.info.active {
    max-width: 300px;
    max-height: 300px;
    opacity: 1;
}

.tree ul {
    list-style-type: none;
    padding-left: 0.7em;
    margin: 0;
}

.tree li {
    position: relative;
    padding-left: 0.8em;
    margin-bottom: 5px;
}

.tree li::before {
    content: "├── ";
    color: #6ba36b;
    position: absolute;
    left: -1.5em;
}

.tree li:last-child::before {
    content: "└── ";
}

.tree .root::before {
    content: "";
    font-weight: bold;
    font-size: 1em;
    color: #e0e0e0;
    position: initial;
    padding-left: 0;
    margin-left: -1.5em;
}

.cursor {
    border-right: 2px solid #6ba36b;
    display: inline;
    animation: blink 0.7s step-end infinite alternate;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Download pagina's stijlen */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

h1 {
    color: #2a2a2a;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 10px;
    font-size: 1.5em;
}

.search-container {
    margin-bottom: 20px;
}

.search-bar {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
}

.download-item {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: #f9f9f9;
    position: relative;
    gap: 10px;
    flex-direction: row;
}

.download-item:last-child {
    border-bottom: none;
}

.download-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.download-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.download-item h2 {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.download-item p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9em;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    position: absolute;
    right: 10px;
    top: 10px;
}

/* Contact pagina stijlen */
.email {
    font-size: 1.5em;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20% auto;
    max-width: 400px;
}

.email a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.email a:hover {
    text-decoration: underline;
}

/* Achtergrond voor content pagina's */
.content-background {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f4f8;
    color: #333;
    background-image: url('../images/2881-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: calc(100vh - 50px);
}