.request-radar {
    margin-bottom: 15px;
    padding: 15px;
    margin-top: 15px;
    background: rgb(255 255 255 / 2%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.radar-header{
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:12px;
}

.radar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

.radar-card {
    background: #1a1a1a;
    padding: 10px;
    text-align: center;
    transition: 0.2s;
    border: 1px solid rgba(5, 217, 232, 0.2);
    border-radius: 4px;
}

.radar-card:hover{
    transform:translateY(-3px);
}

.radar-avatar {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.4;
}

.radar-avatar:hover {
    opacity: 1;
}

.radar-avatar img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.radar-title a{
    font-size:13px;
    text-decoration:none;
}