﻿
.lfg-title {
    grid-row: 1;
    grid-column: 1/8;
    color: #fff;
}

.lfg-waiting {
    place-content: center;
    place-items: center;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    grid-row: 3;
    grid-column: 3/6;
}

.lfg-card {
    display: flex;
    flex-direction: column;
    place-items: center;
    border: 0.5px solid rgba(15, 23, 41, 0.5);
    border-radius: 8px;
    box-shadow: 0px 0px 9px 6px #000000;
    width: 150px;
    height: 160px;
    padding: 20px;
    justify-content: space-between;
    
}

    .lfg-card:hover {
        box-shadow: 0px 0px 20px 0px var(--primary-red);
        transform: scale(1.1);
    }
.lfg-card-cs2v2 {
    background-image: url(/images/cs2-card.jpg);
}
.lfg-card-cs5v5 {
    background-image: url(/images/cs2-card.jpg);
}

.lfg-card-arc {
    background-image: url(/images/arc-card.jpg);
}

.lfg-form-left {
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-row: 5;
    grid-column: 2;
}

.lfg-form-middle {
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-row: 5;
    grid-column: 4;
}

.lfg-form-right {
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-row: 5;
    grid-column: 6;
}

.lfg-btns {
    display: flex;
    gap: 1rem;
}

.lfg-match-found {
    place-items: center;
    display: flex;
    flex-direction: column;
    grid-row: 5;
    grid-column: 3;
}


/*====================
    Players online 
====================*/

.players-online {
    display: grid;
    height: 700px;
    width: 200px;
    grid-row: 3;
    grid-column: 3;
    background: rgba(15, 23, 41, 0.8) 48%;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    overflow: hidden;
}

.players-list {
    display: flex;
    gap: .7rem;
    align-items: center;
}

.players {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.players-icon {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid #03ff00;
}
/*====================
    Modal Overlay Match Found
====================*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    color: white;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

    .modal-buttons .cancel {
        background: #b33;
    }

.ready-check {
     width: 15px;
     height: 15px;
     background-color: #03ff00;
     border-radius: 50%;
}

.ready-waiting {
    width: 15px;
    height: 15px;
    background-color: #ff0000;
    border-radius: 50%;
}

.ready-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;

}

.ready-players {
    display: flex;
    gap: 1rem;
}

