/*!
Version: 1.05

*/
#bluesky-container a {
    text-decoration: none;
  }
  #bluesky-container a:hover {
    text-decoration: underline;
  }
  
  /* Profile Section */
  .bluesky-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
  }
  .bluesky-profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .bluesky-info h3 {
    margin: 0;
    font-size: 16px;
  }
  .bluesky-meta {
    display: block;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
  }
  .bluesky-meta p {
    font-size: 14px;
    color: #555;
  }
  .bluesky-follow-button {
    background: #1d9bf0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  /* Carousel Section */
  .bluesky-carousel {
    max-width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    position: relative;
  }
  .bluesky-post {
    padding: 10px;
    text-align: center;
  }
  .bluesky-post .post-text {
    margin-bottom: 10px;
  }
  .bluesky-embed h4 {
    margin: 10px 0 5px;
    font-size: 16px;
  }
  .bluesky-embed p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }
  
  /* Custom Arrow Styles */
  .custom-prev, .custom-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1d9bf0;
    color: #fff;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
  }
  .bluesky-carousel:hover .custom-prev,
  .bluesky-carousel:hover .custom-next {
    opacity: 1;
  }
  .custom-prev {
    left: 10px;
  }
  .custom-next {
    right: 10px;
  }
  .custom-prev span, .custom-next span {
    font-size: 18px;
    line-height: 1;
  }
  