body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full page height */
    margin: 0;
}

.content-wrapper {
    flex: 1; /* Ensures the content takes available space */
}

.big-btn {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #2a3445 0, #3d4b60 100%);
    border: 0;
    border-radius: 10px; /* Keeping rounded corners */
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono", monospace;
    height: 60px; /* Large button height */
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.15s, transform 0.15s;
    user-select: none;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 1.5rem;
    width: 100%; /* Full width */
    margin-bottom: 15px;
    z-index: 1;
}

.big-btn:focus {
    box-shadow: #4a5c7a 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #4a5c7a 0 -3px 0 inset;
}

.big-btn:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #4a5c7a 0 -3px 0 inset;
    transform: translateY(-2px);
}

.big-btn:active {
    box-shadow: #4a5c7a 0 3px 7px inset;
    transform: translateY(2px);
}

.container {
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin: 100px auto;
}

footer {
    bottom: 0;        /* Positions the footer at the bottom of the viewport */
    width: 100%;
    padding: 10px;
    background-color: #141a22 !important;
    text-align: center;
    z-index: 2;
}

.edit-icon {
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}


.transparent-input {
    width: 90%;
    min-height: 40px;  /* Minimum height */
    border: none;  /* Remove borders */
    outline: none;  /* Remove outline */
    overflow-y: hidden;  /* Hide overflow */
    white-space: pre-wrap;  /* Wrap the text */
    word-wrap: break-word;  /* Break long words to fit */
    background: transparent;
    font-size: 16px;  /* Adjust font size */
    line-height: 1.5;
}
.accordion-header .transparent-input {
    pointer-events: none; /* Prevent clicks on the input field */
    background: transparent;
    border: none;
    outline: none;
    z-index: 1;
}


.normal-input {
    background: white;       /* Set a white background */
    border: 1px solid #ccc;  /* Add a border */
    color: #000;              /* Set text color to black */
    font-size: 1rem;          /* Set a default font size */
    padding: 0.5rem;          /* Add padding */
    width: 90%;              /* Full width */
}

.subsection-display {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    text-align: left;  /* Optional: if you want to ensure alignment */
}

.table {
    border-collapse: collapse;
    width: 100%;
}

.table th, .table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.table thead {
    background-color: #2a3445;
    color: white;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-hover tbody tr:hover {
    background-color: #e9e9e9;
}


