.sp-documents-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sp-folder-tile, .sp-document-tile {
    text-align: center;
    width: 150px;
    background-color: rgba(255, 255, 255, 0.8); /* White background with some transparency */
    border-radius: 8px; /* Rounded corners */
    padding: 10px; /* Padding around the content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for a lifted effect */
    
    /* Remove the fixed height so the container adjusts dynamically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp-folder-tile img, .sp-document-tile img {
    width: 100%;
    height: auto; /* Maintain image aspect ratio */
    max-width: 150px; /* Prevent the image from stretching wider than the container */
    border-radius: 5px;
}

.sp-folder-tile h3, .sp-document-tile h3 {
    font-size: 16px;
    margin-top: 10px;
    color: #000; /* Ensure the text color is black for visibility */
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-folder-link {
    text-decoration: none;
}

.sp-document-link {
    text-decoration: none;
}

#sp-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.8); /* Light background with slight transparency */
    padding: 10px; /* Add padding for spacing */
    border-radius: 5px; /* Rounded corners for better aesthetics */
    display: inline-block; /* Ensure the breadcrumb takes up only as much space as needed */
}

#sp-breadcrumb a {
    color: #0073aa; /* Keep the link color the same */
    text-decoration: none;
}

#sp-breadcrumb a:hover {
    text-decoration: underline;
}

#sp-breadcrumb .sp-breadcrumb-separator {
    color: #333;
    padding: 0 5px;
}
