body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #c6e1e9; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 16px;
    box-sizing: border-box;
}


.main-container {
    width: 100%;
    max-width: 448px;
    background-color: #e0f2f7;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 24px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 16px;
}
.header a img { /* Styling for arrow, kinda weird cause' of the a tag*/
    height: 30px; 
    width: 30x; 
    object-fit: contain; 
    vertical-align: middle;
}

/* --- Album Page Specific Styling --- */
.albums-section {
    background-color: #d4edda; 
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title .see-all {
    font-size: 0.8rem;
    font-weight: normal;
    color: #718096;
    text-decoration: none;
}

.album-card {
    display: flex;
    flex-direction: column;
    background-color: #f0f0f0; /* Lighter background for cards */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px; /* Space between album cards */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit text color */
    transition: transform 0.2s ease-in-out;
}

.album-card:hover {
    transform: translateY(-3px);
}

.album-card-image {
    width: 100%;
    height: 150px; /* Fixed height for album cover images */
    object-fit: cover;
    display: block;
}

.album-card-info {
    padding: 12px;
}

.album-card-title {
    font-weight: bold;
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 4px;
}

.album-card-count {
    font-size: 0.85rem;
    color: #718096;
}

/* Specific styling for the "People & Places" stacked effect */
.stacked-album-card {
    position: relative;
    margin-bottom: 24px; /* Adjust margin for stacked effect */
}
.stacked-album-card .album-card-base {
    background-color: #e2e8f0; /* Slightly different background for the base card */
    border-radius: 12px;
    position: absolute;
    top: 10px; /* Offset for stacking */
    left: 10px; /* Offset for stacking */
    right: 0;
    bottom: -10px; /* Extend slightly below */
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.stacked-album-card .album-card-front {
    position: relative;
    z-index: 2;
}