@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

i .right-aligned {
    float: right;
}

.home-link a {
    text-decoration: none;
    font-size: 24px;
    color: black;
}


body {
    font-family: Arial, sans-serif;
    position: relative;
    display: flex;
    background-color: #f9f9f9;
    flex-direction: column;
    height: 100vh;
    margin-left: 5px;
    margin-right: 5px;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background-color: #b0f0fa;
}


.status-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    font-size: 20px;
    font-weight: bold;
    background-color: lightgray;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
}


h1 {
    text-align: center;
    color: black;
}

dialog {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    background-color: whitesmoke;
    border: none;
}

dialog h3 {
    background-color: #b0f0fa;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

dialog .input-prompt-container {
    display: flex;
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

dialog .input-group {
    width: 90%;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

dialog .input-group input {
    width: 100%;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
}



dialog .btn-container {
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    margin-top: 20px;
    column-gap: 10px;
}

dialog input,
dialog label {
    padding-left: 10px;
}

dialog button {
    width: 120px;
    height: 35px;
}


.container {
    display: flex;
    flex-direction: column;
    padding: 2px;
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: auto;
    border: none;
}

.table-container {
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
    border: 1px solid #ddd;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

thead {
    background-color: #4CAF50;
    color: white;
}



table th,
table td {
    border: 1px solid white;
    border-color: transparent;
    padding: 10px 10px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: text;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #4CAF50;
}

tbody td {
    border-color: black;
    border-style: dotted;
    background-color: white;
    color: black;
}

tbody td.linked-cell {
    cursor: pointer;
}

.features {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}



.hidden,
.hide {
    display: none
}