.box-row {
    text-align: center;
    margin: auto;
    width: 80%;
    display: flex;
    user-select: none;
}

.box-column {
    width: 33.33%;
}

.expandable-box {
    width: 300px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.box-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: transform 0.3s ease;
}

.box-content-1 {
    display: none;
}

/* Styles/docs.css */


.box-column-1 {
    margin-left: 75px;
    display: flex;
}

.box-column-2 {
    margin-left: 75px;
    display: flex;
}

.box-column-3 {
    margin-left: 75px;
    display: flex;
}

/* Add styles for view button */
.doc-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 200px;
}

/* Add styles for title */
.doc-box .doc-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Add styles for description */
.doc-box .doc-description {
    margin-bottom: 15px;
}

/* Add styles for view button */
.doc-box .view-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.doc-box .view-button:hover {
    background-color: #0056b3;
}


