body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    
}

.container {
    display: flex;
    height: 100vh;
    
}

.team-container {
    flex: 1;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
}


textarea {
    width: 100%;
    height: 575px;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    resize: none;
}

#home-team {
    border-right: 1px solid #ccc;
}

.continue-button {
    position: absolute;
    top: 685px; 
    right: 625px; 
    padding: 10px 20px;
    font-size: 16px;
    width: 250px;
    height: 60px;
    background-color: black;
    color: white;
    border: 1px solid #000;
    cursor: pointer;
}
.view-button {
    position: absolute;
    top: 755px; 
    right: 625px; 
    padding: 10px 20px;
    font-size: 16px;
    width: 250px;
    height: 60px;
    background-color: black;
    color: white;
    border: 1px solid #000;
    cursor: pointer;
}

.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    text-align: center;
}

video {
    width: 80%;
    height: 80%;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}
