#pnd_insta_feed {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#pnd_insta_feed .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 16px;
}
#pnd_insta_feed .login-container {
    text-align: center;
    background: white;
    padding: 40px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1)
}

#pnd_insta_feed .login-button {
    display: inline-flex;
    align-items: center;
    background-color: #0095f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

#pnd_insta_feed .login-button:hover {
    background-color: #0081d6;
}

#pnd_insta_feed .instagram-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
#pnd_insta_feed .feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#pnd_insta_feed .post {
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1)
}

#pnd_insta_feed .post-header {
    display: flex;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    color: inherit;
}

#pnd_insta_feed .post-header:hover {
    opacity: 0.75;
    transition: opacity 0.2s;
}

#pnd_insta_feed .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    overflow: hidden;
}

#pnd_insta_feed .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pnd_insta_feed .username {
    font-weight: 600;
}

#pnd_insta_feed .post-media {
    width: 100%;
    display: block;
}

#pnd_insta_feed .video-container {
    position: relative;
    width: 100%;
}

#pnd_insta_feed .video-container video {
    width: 100%;
    display: block;
    cursor: pointer;
}

#pnd_insta_feed .video-container video::-webkit-media-controls-panel {
    display: none !important;
}

#pnd_insta_feed .video-container video[data-playing="true"]::-webkit-media-controls-panel {
    display: flex !important;
}

#pnd_insta_feed .video-container video.hide-controls {
    -moz-controls-hide: true;
}

#pnd_insta_feed .play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#pnd_insta_feed .play-button svg {
    width: 64px;
    height: 64px;
    color: white;
}

#pnd_insta_feed .post-content {
    padding: 16px;
}

#pnd_insta_feed .caption {
    margin: 0px;
    line-height: 1.5;
    font-size: 15px;
    color: #444;
}

#pnd_insta_feed .post-link {
    display: inline-block;
    margin-top: 8px;
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
}

#pnd_insta_feed .post-link:hover {
    color: #00376b;
}

#pnd_insta_feed .timestamp {
    margin-top: 8px;
    color: #8e8e8e;
    font-size: 12px;
}