/* iframe stuff */
.main-section .iframe {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio = 9/16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.main-section .iframe hr {
  width: 95%;
}

.main-section .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 10px;
  z-index: 0;
}
/* end of iframe stuff */


/* start of tabs*/

.tab-container {
  display: flex;
  flex-wrap: wrap;           /* ✅ Allows wrapping */
  gap: 10px;                 /* Space between tabs */
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: #fff;
  max-width: 800px;          /* Optional: set max width */
  margin: 0 auto;            /* Center horizontally */
}

.tab {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ecd775;
  border-bottom: none;       /* Folder tab effect */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(to bottom, #ecd775, #f0dc87);
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* Shadow effect for "folder tab" look */
.tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}

/* Hover effect */
.tab:hover {
  background: linear-gradient(to bottom, #fff, #eee);
  border-color: #555;
  color: #000;
}

/* end of tabs */

.main-section h4 {
  margin-top: 0;
  font-size: 0.9em;
  padding: 0px;
}

/* Share Music Stuff */

.music-box {
    max-width: 365px;
    height: 145px;
    border: 1px solid #ddd;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    background: #222222;
    border-radius: 8px;
}

/* Top Text Section */
.music-top {
    font-size: 16px;
    line-height: 1.4em;
    color:#e6e6e6;
}

.music-top .album {
    font-size: 14px;
    color: #cccccc;
    margin-top: 4px;
}

/* Bottom Section */
.music-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PNG Links */
.music-links img {
    width: 100px;     /* Half of 200px */
    margin-right: 8px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.music-links img:hover {
    opacity: 0.75;
}

/* NEXT Button */
.next-btn {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s ease;
    width: 60px;
}

.next-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

/* End of Share Music */

