body {
    background-color: #000000; 
    color: #e9ecef; 
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    margin-top: 50px;
    margin-bottom: 70px;
    min-height: calc(100vh - 120px);
}

.sidebar {
    width: 250px;
    background-color: #030303; 
    padding: 10px 20px;
    border-right: 1px solid #0a0a0a;
}

.sidebar h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #2b2f33; 
    border-radius: 6px;
    color: #e9ecef;
    border: 1px solid #1f2326;
}

.match-item i {
    color: #4CAF50;
}

.content {
    flex: 1;
    padding: 0px 20px;
    background-color: transparent;
    position: relative;
    z-index: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header h1 {
    color: white;
    font-size: 32px;
    margin: 0;
}

.manage-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    background-color: #2b2f33; 
    border: 1px solid #1f2326;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    border-radius: 5px;
    color: white;
    font-size: 14px;
}

.filters select {
    padding: 10px;
    background-color: #2b2f33;
    border: 1px solid #1f2326;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    border-radius: 5px;
    color: white;
    font-size: 14px;
    min-width: 150px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.player-card {
    background-color: #22262a; 
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid #151718;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.6);
}

.player-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.player-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.position {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.position.forward {
    background-color: #ff6b35;
    color: white;
}

.position.midfielder {
    background-color: #ffd700;
    color: black;
}

.position.defender {
    background-color: #007bff;
    color: white;
}

.club {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #ccc;
}

.club i {
    color: #4CAF50;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #ccc;
    font-size: 12px;
}

.stat i {
    color: #4CAF50;
}

.nationality {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.view-btn {
    background-color: #2ecc71; 
    color: #06230a;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    font-weight: 600;
}

.view-btn:hover {
    background-color: #27c46a;
}


.player-card {
    background: linear-gradient(145deg, #1a1c1e, #23272b);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #2f3336;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.player-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.player-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #4CAF50;
    object-fit: cover;
}

.player-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.position {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.team-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.team-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #333;
    background-color: #fff;
}

.team-name {
    font-size: 16px;
    color: #e0e0e0;
    font-weight: 500;
}

.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2f33;
    border-radius: 10px;
    padding: 10px 0;
    margin-bottom: 12px;
}

.stats div {
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stats i {
    color: #4CAF50;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.yellow-card, .red-card {
    display: flex;
    align-items: center;
    gap: 5px;
}

.position {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}
