/* My Memes Page Specific Styles */

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.meme-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.meme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.meme-card>img {
    width: 100%;
    height: auto;
    display: block;
}

.meme-info {
    padding: 1rem;
}

.meme-info p {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.meme-info small {
    color: #777;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.pagination button {
    background: #FF6200;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: #e55500;
}

.pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.loading-indicator {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #666;
}

.meme-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.meme-meta small {
    font-size: 0.8rem;
    color: #666;
}

.meme-meta small:last-child {
    font-style: italic;
    color: #555;
}

.meme-author {
    margin-top: 0.3rem;
}

.meme-author small {
    font-style: italic;
    color: #888;
    font-size: 0.75rem;
}

.meme-author-detail {
    margin-top: 0.5rem;
}

.meme-author-detail p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.privacy-icon {
    width: 28px;
    height: 28px;
}