html, body {
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(#222, #000);
    background-attachment: fixed;
    overflow-x: hidden;
}

.selectContainer {
    display: flex;
    container-type: inline-size;
    min-height: 48px;
    padding: 6px;
    margin: 5vh auto 0 auto;
    width: min(90%, 500px);
    background: rgba(255, 255, 255, 0.11);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.selectContainer a {
    min-height: 20px;
    padding: 6px 20px;
    width: auto;
    min-width: 0px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: clamp(12px, 1.6vw, 16px);

    margin: auto;
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;

    backdrop-filter: blur(7.1px);
    -webkit-backdrop-filter: blur(7.1px);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.selectContainer a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(107, 105, 105, 0.5);
}

.status {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    width: 320px;
    margin: 0 auto;
}

.status .userName {
    position: absolute;
    top: 35vh;
    transform: translateY(calc(-100% - 140px));
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    font-family: Arial, sans-serif;
    font-size: clamp(30px, 40cqw, 38px);
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.status .discordPfp {
    position: absolute;
    top: 35vh;
    transform: translateY(-50%);
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    background: #36393f;
}

.status .activities {
    position: absolute;
    top: 55vh;
    transform: translateY(-50% - 100px);
    padding: 16px;
    width: min(90%, 500px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.divBoxName {
    color: gray;
    font-family: Arial, sans-serif;
    font-size: clamp(10px, 15cqw, 15px); 
}

.activityRow img {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.activityRow .right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.activityRow .left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.activityRow {
    display: flex;
    align-items: center;
    gap: 150px;
}

.activityRow p {
    color: white;
    font-family: Arial, sans-serif;
    font-size: clamp(10px, 15cqw, 15px);
    margin: 0;
    white-space: nowrap;
}

.statusDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}