.wikilink { cursor: pointer; }

.wikiname {color: #555555; text-align: right;}



.transcluded {
  background-color: #eeeeff;
  padding:10px;

  border-left: 10px solid #faaa96;

}



.wikilink {color:#85144b;}



.double-comma-table {
    border-style:dotted;
    border-width:1px;
    border-color:gray;
    width:100%;
}

.double-comma-table td {
    padding:10px;
    border-style:dotted;
    border-width:1px;
    border-color:gray;
}

.double-comma-table tr:hover {
    background-color: #f5f5f5;
}



.twin_pages {
    color:#333333;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    background-color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 10px 0;
    margin-bottom: 20px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;  /* This will align the items to the left */
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
}

header nav ul li {
    margin-right: 10px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}


main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.card h1, .card h2 {
    margin-top: 0;
}

.card video {
    max-width: 100%;
    height: auto;
}

blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
}

.manual-copy {
    background-color: #fbfbf9;
    padding: 10px;
    margin: 10px 20px;
}

video {
    display: block;
    margin: 0 auto;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto; /* center the div */
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


 

.workspace-title {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.scittle-workspace {
    width: 100%;
}

.scittle-workspace textarea {
    width: 100%;
    resize: vertical;  /* Allows vertical resizing of the textarea */
}

.scittle-workspace button {
    display: block;  /* Puts the button on a new line */
    margin-top: 10px;
}

.workspace-output {
    font-family: 'Courier New', monospace;
    margin-top: 20px;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.footer span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8em;
    color: #6c757d;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

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


/* Responsive styling */
@media only screen and (max-width: 600px) {
    body {
        font-size: 16px;
    }

    header {
        padding: 5px 0;
    }

    nav ul li {
        margin: 0 10px;
    }

    main {
        padding: 10px;
    }

    .card {
        padding: 10px;
    }
}

/* -------------------------------------- Nav menu ------------------------- */

/* Hide the checkbox */
#toggle {
    display: none;
}

/* Style the label to look like a hamburger icon */
#toggle-label {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 22px;
}

#toggle-label .bar {
    display: block;
    width: 100%;
    height: 4px;
    background: #333;
    margin: 5px 0;
}

/* Hide the menu by default */
.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

/* Show the menu when the checkbox is checked */
#toggle:checked ~ .nav-menu {
    max-height: 500px; /* you can adjust this value as per your needs */
}
