body {
    margin: 0;
    padding: 0;
    min-height: 85vh;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.main-container {
    margin: 20px auto;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    padding: 0 15px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1;
    margin: 10px;
    width: 100%;
    height: 80px;
    margin-top: 60px;
    padding-bottom: 20px;
}

.header-image {
    position: relative;
    z-index: 2;
    max-height: 100px;
}

.avatar-img {
    width: 25px;
    margin-bottom: 5px;
}

.image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-card {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}