/* Post Audio Generator Popup Styles */
.pag-popup-container{
  position: fixed;
  inset: 0;              /* top/right/bottom/left: 0 */
  margin: auto;          /* centers within the inset box */
  width: 350px;
  height: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  overflow: hidden;
  animation: pag-popup-slide-in .3s ease-out;
  cursor: default;
  z-index: 999999;
  border: 2px solid #007cba;
  max-width: calc(100vw - 40px);  /* keep padding from edges on small screens */
  max-height: calc(100vh - 40px);
}

@keyframes pag-popup-slide-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.pag-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.pag-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pag-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.pag-popup-close:hover {
    background: #e9ecef;
    color: #333;
}

.pag-popup-content {
    padding: 20px;
}

.pag-popup-player audio {
    margin-bottom: 15px;
    border-radius: 4px;
}

.pag-popup-info {
    text-align: center;
}

.pag-popup-info #pag-popup-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pag-popup-info #pag-popup-meta {
    font-size: 14px;
    color: #666;
}

.pag-popup-container.minimized {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    top: auto;
    margin: 0;
}

.pag-popup-container.minimized:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.pag-popup-container.minimized .pag-popup-content {
    display: none;
}

.pag-popup-container.minimized .pag-popup-header {
    display: none;
}

.pag-popup-container.minimized::before {
    content: "🎵";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 100%;
    height: 100%;
}
