.content {
    grid-area: content;
    padding: 2rem 2rem;
}

#prompt {
    width: 300px;
}

.admin-panel {
    background-color: antiquewhite;
    padding: 1rem;
}

.float-right-content {
    float: right;
}

.menu-container {
    position: relative;
    display: inline-block;  
}

.menu-icon {
    cursor: pointer;
    font-size: 20px;
}

.action-menu {
    position: absolute;
    top: 24px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 150px;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.action-menu li {
    padding: 6px 12px;
}

.action-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.action-menu li:hover {
    background-color: #f0f0f0;
}

.hidden {
    display: none;
}

.doc-table {
    width: 100%;
    border: none;
}

.doc-table th, td {
    border: none;
}

.doc-cover {
    width: auto;
    max-width: 300px;
    height: auto;
    margin: 0 1rem 1rem 0;
}

.doc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; 
    padding: 1rem;
}

.doc-item {
    /* background-color: #f0f0f0; */
    text-align: center;
    width: 200px;
    height: auto;
    padding: 0.5rem 0.5rem;
}

.doc-item img {
    width: auto;
    max-width: 150px;
    height: auto;
}

.comment-container {
    padding: 0px;
}

.comment-container textarea {
    width: 100%;
    height: 3rem;
    padding: 1rem;
}