#side-menu a{
    font-size: 20px; /* Ustaw większy rozmiar ikon */
    color: #6c757d; /* Kolor ikon */
}

#side-menu a:hover {
    color: #0d6efd; /* Kolor ikon przy hover */
}

.btn-group .btn {
    border-radius: 0; /* Usuwa zaokrąglenia */
    min-width: 200px;
}

.btn-group .btn:not(:last-child) {
    border-right: none; /* Usuwa granice między przyciskami */
}

.btn-group .btn:hover {
    border-color: #007bff; /* Dodaje kolor granicy podczas najechania */
}

.list-group-item {
    cursor: pointer;
}
.list-group-item:hover {
    background-color: #f8f9fa;
}

.deep-links {
    text-align: -webkit-center;
    
    th, td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
}

.home {
    display: block;
    box-sizing: border-box;
    padding-top: 24px;

    .list {
        width: calc(100% + 8px) !important;
        overflow-x: hidden !important;
        position: relative;
        overflow: auto;
        will-change: transform;
        direction: ltr;
    }
}

.workspace-main {
    display: flex;
    justify-content: center;
}

.workspace-container {
    width: 80%;
    text-align: center;
}

.workspace-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.workspace-item {
    height: 250px;
    background-color: #fff;
    border: 2px solid white;
    border-radius: 3px;
    padding: 22px;
    box-shadow: rgba(35, 41, 54, 0.04) 0px 4px 12px 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
}

.workspace-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.workspace-icon {
    align-self: center;
    margin: 26px auto 0px;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 3px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}

.workspace-details h3 {
    margin: 24px 0px 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(56, 67, 80);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.workspace-details p {
    color: rgb(106, 117, 128);
    font-size: 13px;
}
