body{
	background: black;
}

.team-card{
	background: black;
	padding: 20px;
	margin-bottom: 10px;
	border-radius: 10px;
}

.player-number-new{
	color: #8F92A9;
	width: 20px;
}

.message-alert{
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
}

.kit-icon{
	position: relative; 
	bottom: 2px;
	margin-right: 10px;
}

.fixture-card{
    padding: 10px; 
    border-radius: 9px;
    padding-left: 20px;
    border: 1px solid #00FF90;
    background: #14161a;
}

.icon{
    margin-right: 10px;
    width: 15px;
    margin-top: -2px;
    filter: invert(1);
}

.icon-row{
    padding: 5px 0px;
}

#toolbar{
	position: fixed;
    background: black;
    z-index: 99;
    width: 600px;
    left: calc(50% - 300px);
    bottom: 0px;
}

.no-player-dot{
	position: relative;
    height: 12px;
    width: 12px;
    border-radius: 10px;
    background-color: #2b2c30;
    border: 1px solid #7b7d90;
    top: 6px;
    left: 1px;
    margin-right: 13px;
}

.box{
    padding: 15px;
    background: #14161a;
    border-radius: 10px;
}

.view{
    background-size: cover; 
}

.notification-icon{
    width: 13px;
    margin-right: 9px;
    margin-top: -1px;
}

#signup_result{
    display: flex;
}

#copy_referral{
    display: inline-block;
    width: 100%;
    padding: 16px; 
    background: #00FF90; 
    color: black; 
    border-bottom-left-radius: 10px; 
    border-bottom-right-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    user-select: none;
}

#your_code{
    width: 100%;
    padding: 16px; 
    background: #F3F3F7; 
    color: black; 
    border-top-left-radius: 10px; 
    border-top-right-radius: 10px;
}

#copy_referral:hover {
    background: #ff4858;
}

#copy_referral:active {
    transform: scale(0.97);
}

.copy-tooltip {
    position: absolute;
    background: black;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}
.copy-tooltip.show {
    opacity: 1;
    transform: translateY(-14px);
}