#custom-style-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

.MuiPaper-root {
    background-color: rgb(239, 243, 246);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    overflow: hidden;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.MuiPaper-root:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px -2px, rgba(0, 0, 0, 0.2) 0px 4px 6px -1px;
}

.MuiButtonBase-root {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    width: 100%;
}

.MuiCardContent-root {
    padding: 16px;
}

.MuiTypography-root {
    color: rgb(25, 118, 210);
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.MuiTypography-h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.MuiTypography-body1 {
    font-size: 16px;
    color: #555;
}

.mt-5 {
    margin-top: 20px;
}

.MuiCard-root img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}