/* Home Page Styles */

.server-mini-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
}

.top10-table tbody tr {
    cursor: pointer;
    transition: all 0.3s ease;
}

.top10-table tbody tr:hover {
    background: rgba(157, 0, 255, 0.1);
    transform: translateX(5px);
}

/* IP Copy element */
.top10-ip-copy {
    cursor: pointer;
}

/* IP Copy Toast */
.ip-copied-toast {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #39ff14 0%, #00d4ff 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
}

.ip-copied-toast.show {
    display: flex;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
