@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Symbols+2&display=swap');
a {
    color: orange;
}
html,
body {
    background-image: linear-gradient(to right top, #0f203b, #002f42, #003c3e, #284737, #484f36);
    margin: 0;
    overflow: auto;
}
html {
    overflow: hidden;
}
body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.container {
    font-family: "Nunito", sans-serif;
    padding: 30px;
    box-shadow: 0px 0px 50px 1px rgba(0, 0, 0, 0.25);
    max-width: 1000px;
    color: rgb(200, 200, 200);
    background: rgba(10, 10, 10, 0.75);
}
.container h1 {
    text-align: center;
}
.project {
    margin-bottom: 20px;
}
.project button {
    background-color: transparent;
    color: orange;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}
.project button:hover {
    text-decoration: underline;
}
.project-content {
    display: none;
    margin-top: 10px;
}
.project-content p {
    margin: 0;
}
.diagram {
    font-family: monospace;
    white-space: pre;
    border: 1px solid #ddd;
    padding: 10px;
    color: #fff;
    background-color: rgba(10, 10, 10, 0.75);
}
.section h2,
h3 {
    text-align: center;
}
.center_grid_container {
    display: grid;
    place-items: center;
}
.confirmation {
    transition: .4s ease transform;
    box-shadow: 0px 0px 50px 1px rgba(0,0,0,0.5);
    color: rgb(200, 200, 200);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: auto;
    font-family: 'Nunito', sans-serif;
    color: rgb(200, 200, 200);
    height: auto;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px;
    max-width: 500px;
    display: none;
}
.close {
    color: #fff;
    cursor: pointer;
    font-family: "Noto Sans Symbols 2", sans-serif;
}
.close:hover {
    color: orange;
}
.action-buttons button {
    padding-top: 12px;
    padding-bottom: 12px;
    cursor: pointer;
    border: none;
    background-color: #2051b3;
    color: white;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2);
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    position: relative;
    overflow: hidden;
}
.action-buttons input {
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}
.action-buttons button:disabled {
    background-color: rgb(100, 100, 100) !important; /* Light gray background */
    color: rgb(200, 200, 200); /* Dark gray text */
    cursor: default; 
    opacity: 0.8; /* Reduce opacity to make it look grayed out */
}
.action-buttons button:hover {
    background-color: #1b4394;
}
.action-buttons button.delete {
    background-color: #dc3545;
}
.action-buttons button.delete:hover {
    background-color: #c82333;
}
.action-buttons .wide {
    width: 100%;
}
.action-buttons button.padding {
    padding: 10px 40px;
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
}
.dead_drop_background {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    z-index: 9;
    top: 0;
    display: none;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.image-container,
.image-container-small {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 200, 200, 0.75);
    padding: 40px 20px;
    box-shadow: 0px 0px 50px 1px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    max-width: 100%;
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.image-label {
    margin-top: 10px;
}



.flexbox {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping */
    justify-content: center;
    align-items: flex-start;
    gap: 10px; /* Optional: add space between items */
}

.image-container-small {
    width: 100%;
}
.image-container-small .flexbox {
    width: 100%;
}
.image-container img, .image-container video {
    border-radius: 15px;
    padding: 5px;
    box-shadow: 0px 0px 50px 1px rgba(0, 0, 0, 0.5);
    width: 100%;
}
.image-container-small img, .image-container-small video {
    border-radius: 15px;
    padding: 5px;
    width: 45%;
    box-shadow: 0px 0px 50px 1px rgba(0, 0, 0, 0.5);
    box-sizing: border-box; /* Ensure padding is included in the width calculation */
}
