@font-face {
    font-family: 'playfairdisplay'; /* Choose a name for your font family */
    src: url('/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('ttf');
    font-weight: normal; /* Specify the font weight */
    font-style: normal;  /* Specify the font style */
    font-display: swap; /* Recommended for better perceived performance */
}
/* h1,h2,h3 {
    font-family: playfairdisplay, sans-serif;
}  */

body.web-app
{
    margin: 10; 
    height: 100vh;  
    align-items: center; 
    text-align: center;
}

h1 {
    font-size: 2.5rem;
}

.mainTitle{
    color: #1976D2; 
    text-align: center;
}
.centerFlex {      
    margin-top: auto;
    padding: 10px; 
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
}

.box{
    display: flex;  
    flex-direction: column; 
    padding: 10px;

    background-color: #ffffff;
 
    border: 2px solid black;
    border-radius: 10px;

    box-shadow: 0 0 0 0.1rem ; 
    margin: 4px;
}
.masterbox{
    outline: 2px solid var(--bg-music);
    outline-offset: 2px;
}

.hoverBox {
    position: absolute;
    top: 10%;
    right: 1rem;
     
    border: 1px solid #cbd5e1;
    background-color: #0f172a;
    color: white;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.hoverBox:hover {
    opacity: 1;
    border-color: #64748b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.hoverBox-checkbox{
    display: none;
}
.hoverBox-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.hoverBox-content{
    display: none;
    max-height: 40vh;
    overflow-y: auto;
}
.hoverBox-checkbox:checked ~ .hoverBox-content {
    display: block;
}
.hoverBox-checkbox:checked ~.hoverBox-header .toggle-icon{
    transform: rotate(180deg);
}


.horizontal-box{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;

} 


.text-container{
    position: relative;
    width: 640px; /* this is teh size of the yt player in 321jam */
    margin: 0 auto;    
}
#textOverlay{
    position: absolute;
    top: 50%;
    left: 50%;
transform: translate(-50%, -50%);
    width: 40vw;
    height:  40vw; 

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.589);
    color: #ffffff;
    font-size: 15vw;
    font-weight: bold; 
    z-index: 5;

    /* animation: pop 0.2s ease-in-out; */
}
.textOverlay-hidden{
    display: none !important;
}

.disabled-section {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}

input[type="file"] { 
    position: absolute;
    width: 1px;
    height: 1px; clip: rect(0, 0, 0, 0);
    overflow: hidden; 
}
input[type="file"]:focus + .fileUploadBtn, .jam-btn:focus  {
    outline: 2px solid #000000;  
    outline-offset: 1px;
}

.fileUploadBtn{
    display:inline-block; 
    
    margin: 5px;

    padding: 10px 16px; 
    border-radius: 50px;
    background-color: #0f172a;
     
    color: #ffffff; 
    font-weight: 200;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fileUploadBtn:hover{
    background-color: #17233f;
    transform: scale(0.98);
}

.status-header{
    margin: 2px ;
    font-weight: bold;
    text-decoration: underline;
}
/* #region 321Jam*/
.jam-btn{
    background-color: #0f172a;
    color: #ffffff;
    margin: 1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;

    transition: 0.3s ease-out;
}
.jam-btn:hover{
    background-color:  var(--bg-music);
    transform: scale(0.98);
}
/*  
/* #endregion */